# HG changeset patch # User Bram Moolenaar # Date 1674924303 -3600 # Node ID 2ce8e7c4acf48cd22795e8fb27395c08d86c8139 # Parent c049b6f3463907e32dceb3e86c4f2238230b54f3 patch 9.0.1255: changing 'virtualedit' does not have immediate effect Commit: https://github.com/vim/vim/commit/8fe5b9c8c1223861cec0484ccc031858ae08d107 Author: Bram Moolenaar Date: Sat Jan 28 16:37:37 2023 +0000 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 https://github.com/vim/vim/issues/11878) diff --git a/src/optionstr.c b/src/optionstr.c --- a/src/optionstr.c +++ b/src/optionstr.c @@ -2078,7 +2078,7 @@ did_set_string_option( { if (opt_strings_flags(ve, p_ve_values, flags, TRUE) != OK) 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 // changes something. diff --git a/src/testdir/test_virtualedit.vim b/src/testdir/test_virtualedit.vim --- a/src/testdir/test_virtualedit.vim +++ b/src/testdir/test_virtualedit.vim @@ -537,6 +537,19 @@ func Test_global_local_virtualedit() set virtualedit& 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() let save_mouse = &mouse set mouse=a diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -696,6 +696,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1255, +/**/ 1254, /**/ 1253,