Mercurial > vim
view src/testdir/thread_util.py @ 34215:8b0648002604 v9.1.0056
patch 9.1.0056: wrong number of trailing spaces inserted after blockwise put
Commit: https://github.com/vim/vim/commit/6638ec8afa9875ff565020536954c424d5f6f27d
Author: VanaIgr <vanaigranov@gmail.com>
Date: Thu Jan 25 21:50:41 2024 +0100
patch 9.1.0056: wrong number of trailing spaces inserted after blockwise put
Problem: Incorrect number of trailing spaces inserted for multibyte
characters when pasting a blockwise register in blockwise visual
mode (VanaIgr)
Solution: Skip over trailing UTF-8 bytes when computing the number of trailing
spaces (VanaIgr)
When pasting in blockwise visual mode, and the register type is <CTRL-V>, Vim
aligns the text after the replaced area by inserting spaces after pasted
lines that are shorter than the longest line. When a shorter line contains
multibyte characters, each trailing UTF-8 byte's width is counted in addition
to the width of the character itself. Each trailing byte counts as being 4
cells wide (since it would be displayed as <xx>).
closes: #13909
Signed-off-by: VanaIgr <vanaigranov@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 25 Jan 2024 22:15:02 +0100 |
parents | 06e3c6bac36d |
children |
line wrap: on
line source
import platform if platform.system() == 'Darwin': from ctypes import ( CDLL, POINTER, Structure, byref, c_int, c_uint, c_uint32, c_void_p, sizeof ) from ctypes.util import find_library class ThreadTimeConstraintPolicy(Structure): _fields_ = [ ("period", c_uint32), ("computation", c_uint32), ("constraint", c_uint32), ("preemptible", c_uint) ] _libc = CDLL(find_library('c')) THREAD_TIME_CONSTRAINT_POLICY = c_uint(2) THREAD_TIME_CONSTRAINT_POLICY_COUNT = c_uint( int(sizeof(ThreadTimeConstraintPolicy) / sizeof(c_int))) _libc.pthread_self.restype = c_void_p _libc.pthread_mach_thread_np.restype = c_uint _libc.pthread_mach_thread_np.argtypes = [c_void_p] _libc.thread_policy_get.restype = c_int _libc.thread_policy_get.argtypes = [ c_uint, c_uint, c_void_p, POINTER(c_uint), POINTER(c_uint) ] _libc.thread_policy_set.restype = c_int _libc.thread_policy_set.argtypes = [ c_uint, c_uint, c_void_p, c_uint ] def _mach_thread_self(): return _libc.pthread_mach_thread_np(_libc.pthread_self()) def _get_time_constraint_policy(default=False): thread = _mach_thread_self() policy_info = ThreadTimeConstraintPolicy() policy_infoCnt = THREAD_TIME_CONSTRAINT_POLICY_COUNT get_default = c_uint(default) kret = _libc.thread_policy_get( thread, THREAD_TIME_CONSTRAINT_POLICY, byref(policy_info), byref(policy_infoCnt), byref(get_default)) if kret != 0: return None return policy_info def _set_time_constraint_policy(policy_info): thread = _mach_thread_self() policy_infoCnt = THREAD_TIME_CONSTRAINT_POLICY_COUNT kret = _libc.thread_policy_set( thread, THREAD_TIME_CONSTRAINT_POLICY, byref(policy_info), policy_infoCnt) if kret != 0: raise OSError(kret) def set_high_priority(): policy_info = _get_time_constraint_policy(default=True) if not policy_info: return policy_info.preemptible = c_uint(False) _set_time_constraint_policy(policy_info)