summaryrefslogtreecommitdiff
path: root/src/option.h
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-01-15 10:52:16 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-15 10:52:16 +0000
commite1833bfd01c100896d2a01f281762c285192d84b (patch)
tree1745806541f0e04a30c1659405c74dfa258c1ad9 /src/option.h
parentc53b467473160b5cfce77277fbae414bf43e66ce (diff)
downloadvim-git-e1833bfd01c100896d2a01f281762c285192d84b.tar.gz
patch 8.2.4094: 'virtualedit' is window-local but using buffer-local enumv8.2.4094
Problem: 'virtualedit' is window-local but using buffer-local enum. Solution: Use window-local enum. (closes #9529)
Diffstat (limited to 'src/option.h')
-rw-r--r--src/option.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/option.h b/src/option.h
index 00a2d2ecc..c9b63f738 100644
--- 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