0
0
mirror of https://github.com/vim/vim.git synced 2025-10-14 07:04:10 -04:00

patch 9.0.1255: changing 'virtualedit' does not have immediate effect

Problem:    Changing 'virtualedit' does not have immediate effect.
Solution:   Correct how is checked for a changed value. (closes #11878)
This commit is contained in:
Bram Moolenaar
2023-01-28 16:37:37 +00:00
parent d0200c8631
commit 8fe5b9c8c1
3 changed files with 16 additions and 1 deletions

View File

@@ -2078,7 +2078,7 @@ did_set_string_option(
{ {
if (opt_strings_flags(ve, p_ve_values, flags, TRUE) != OK) if (opt_strings_flags(ve, p_ve_values, flags, TRUE) != OK)
errmsg = e_invalid_argument; errmsg = e_invalid_argument;
else if (STRCMP(p_ve, oldval) != 0) else if (STRCMP(ve, oldval) != 0)
{ {
// Recompute cursor position in case the new 've' setting // Recompute cursor position in case the new 've' setting
// changes something. // changes something.

View File

@@ -537,6 +537,19 @@ func Test_global_local_virtualedit()
set virtualedit& set virtualedit&
endfunc endfunc
func Test_virtualedit_setlocal()
enew
setglobal virtualedit=all
setlocal virtualedit=all
normal! l
redraw
setlocal virtualedit=none
call assert_equal(1, wincol())
setlocal virtualedit&
set virtualedit&
endfunc
func Test_virtualedit_mouse() func Test_virtualedit_mouse()
let save_mouse = &mouse let save_mouse = &mouse
set mouse=a set mouse=a

View File

@@ -695,6 +695,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
1255,
/**/ /**/
1254, 1254,
/**/ /**/