diff options
author | Gary Johnson <garyjohn@spocom.com> | 2021-08-03 18:33:08 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-08-03 18:33:08 +0200 |
commit | 51ad850f5fbafa7aa3f60affa74ec9c9f992c6cc (patch) | |
tree | 18fd2f54ee199dcf739262d9df56ccb4d6ac53d1 /src/option.h | |
parent | 2c70711e3fb2ef24a7f55322fdadbf7f9e657c2f (diff) | |
download | vim-git-51ad850f5fbafa7aa3f60affa74ec9c9f992c6cc.tar.gz |
patch 8.2.3280: 'virtualedit' local to buffer is not the best solutionv8.2.3280
Problem: 'virtualedit' local to buffer is not the best solution.
Solution: Make it window-local. (Gary Johnson, closes #8685)
Diffstat (limited to 'src/option.h')
-rw-r--r-- | src/option.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/option.h b/src/option.h index 5732e8256..48a3ec34b 100644 --- a/src/option.h +++ b/src/option.h @@ -1052,8 +1052,8 @@ EXTERN unsigned ve_flags; #define VE_INSERT 6 // includes "all" #define VE_ALL 4 #define VE_ONEMORE 8 -#define VE_NONE 16 -#define VE_NONEU 32 // Upper-case NONE +#define VE_NONE 16 // "none" +#define VE_NONEU 32 // "NONE" EXTERN long p_verbose; // 'verbose' #ifdef IN_OPTION_C char_u *p_vfile = (char_u *)""; // used before options are initialized |