diff src/option.h @ 27130:daac3cf65d7e v8.2.4094

patch 8.2.4094: 'virtualedit' is window-local but using buffer-local enum Commit: https://github.com/vim/vim/commit/e1833bfd01c100896d2a01f281762c285192d84b Author: zeertzjq <zeertzjq@outlook.com> Date: Sat Jan 15 10:52:16 2022 +0000 patch 8.2.4094: 'virtualedit' is window-local but using buffer-local enum Problem: 'virtualedit' is window-local but using buffer-local enum. Solution: Use window-local enum. (closes https://github.com/vim/vim/issues/9529)
author Bram Moolenaar <Bram@vim.org>
date Sat, 15 Jan 2022 12:00:03 +0100
parents 268f6a3511df
children fb4c30606b4a
line wrap: on
line diff
--- a/src/option.h
+++ b/src/option.h
@@ -1235,7 +1235,6 @@ enum
     , BV_VSTS
     , BV_VTS
 #endif
-    , BV_VE
     , BV_COUNT	    // must be the last one
 };
 
@@ -1287,6 +1286,7 @@ enum
 #endif
     , WV_NU
     , WV_RNU
+    , WV_VE
 #ifdef FEAT_LINEBREAK
     , WV_NUW
 #endif