mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 17:28:23 +00:00
Visual: highlight char-at-cursor
Decide whether to highlight the visual-selected character under the cursor, depending on 'guicursor' style: - Highlight if cursor is blinking or non-block (vertical, horiz). - Do NOT highlight if cursor is non-blinking block. Traditionally Vim's visual selection does "reverse mode", which perhaps conflicts with the non-blinking block cursor. But 'guicursor' defaults to a vertical bar for selection=exclusive, and this confuses users who expect to see the text highlighted. closes #8983
This commit is contained in:
@@ -2761,9 +2761,9 @@ do_mouse (
|
||||
} else if ((mod_mask & MOD_MASK_MULTI_CLICK) && (State & (NORMAL | INSERT))
|
||||
&& mouse_has(MOUSE_VISUAL)) {
|
||||
if (is_click || !VIsual_active) {
|
||||
if (VIsual_active)
|
||||
if (VIsual_active) {
|
||||
orig_cursor = VIsual;
|
||||
else {
|
||||
} else {
|
||||
VIsual = curwin->w_cursor;
|
||||
orig_cursor = VIsual;
|
||||
VIsual_active = true;
|
||||
@@ -6401,8 +6401,8 @@ static void nv_visual(cmdarg_T *cap)
|
||||
VIsual_mode = cap->cmdchar;
|
||||
showmode();
|
||||
}
|
||||
redraw_curbuf_later(INVERTED); /* update the inversion */
|
||||
} else { /* start Visual mode */
|
||||
redraw_curbuf_later(INVERTED); // update the inversion
|
||||
} else { // start Visual mode
|
||||
if (cap->count0 > 0 && resel_VIsual_mode != NUL) {
|
||||
/* use previously selected part */
|
||||
VIsual = curwin->w_cursor;
|
||||
|
Reference in New Issue
Block a user