mirror of
https://github.com/vim/vim.git
synced 2025-11-13 22:54:27 -05: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:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user