diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-03-16 21:43:34 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-03-16 21:43:34 +0000 |
commit | 2eb25daffd66cc323c039b624af8f4630f2fbf8f (patch) | |
tree | 8aed8c70bbad657d17b3447893892454831f34ee /src/option.h | |
parent | efd2bf158afeb2337dcb5a62c6198d6d2fb7cd5f (diff) | |
download | vim-git-2eb25daffd66cc323c039b624af8f4630f2fbf8f.tar.gz |
updated for version 7.0226
Diffstat (limited to 'src/option.h')
-rw-r--r-- | src/option.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/option.h b/src/option.h index 794e83b97..b4782abb2 100644 --- a/src/option.h +++ b/src/option.h @@ -813,11 +813,12 @@ EXTERN int p_vb; /* 'visualbell' */ EXTERN char_u *p_ve; /* 'virtualedit' */ EXTERN unsigned ve_flags; # ifdef IN_OPTION_C -static char *(p_ve_values[]) = {"block", "insert", "all", NULL}; +static char *(p_ve_values[]) = {"block", "insert", "all", "onemore", NULL}; # endif # define VE_BLOCK 5 /* includes "all" */ # define VE_INSERT 6 /* includes "all" */ # define VE_ALL 4 +# define VE_ONEMORE 8 #endif EXTERN long p_verbose; /* 'verbose' */ EXTERN char_u *p_vfile; /* 'verbosefile' */ |