diff options
| -rw-r--r-- | src/nvim/option_defs.h | 2 | ||||
| -rw-r--r-- | src/nvim/options.lua | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/option_defs.h b/src/nvim/option_defs.h index db8bc83395..5d6aca9574 100644 --- a/src/nvim/option_defs.h +++ b/src/nvim/option_defs.h @@ -841,7 +841,6 @@ enum {    BV_WM,    BV_VSTS,    BV_VTS, -  BV_VE,    BV_COUNT,  // must be the last one  }; @@ -872,6 +871,7 @@ enum {    WV_LBR,    WV_NU,    WV_RNU, +  WV_VE,    WV_NUW,    WV_PVW,    WV_RL, diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 0f46d2de21..aea2179a61 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -2736,7 +2736,7 @@ return {      {        full_name='virtualedit', abbreviation='ve',        short_desc=N_("when to use virtual editing"), -      type='string', list='onecomma', scope={'global', 'buffer'}, +      type='string', list='onecomma', scope={'global', 'window'},        deny_duplicates=true,        redraw={'curswant'},        varname='p_ve',  | 
