diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-10-03 21:52:09 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-10-03 21:52:09 +0000 |
commit | bb15b658647d8eca01e67df871f7cb5ed95e2534 (patch) | |
tree | 6214d5476e5b780728462e5832306a9050bef26b /src/vim.h | |
parent | 69e0ff94dce3a017feafbd0bb60e5720cda0441b (diff) | |
download | vim-bb15b658647d8eca01e67df871f7cb5ed95e2534.zip |
updated for version 7.0153
Diffstat (limited to 'src/vim.h')
-rw-r--r-- | src/vim.h | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -1150,13 +1150,19 @@ typedef enum , HLF_SPC /* SpellCap */ , HLF_SPR /* SpellRare */ , HLF_SPL /* SpellLocal */ + , HLF_PNI /* popup menu normal item */ + , HLF_PSI /* popup menu selected item */ + , HLF_PSB /* popup menu scrollbar */ + , HLF_PST /* popup menu scrollbar thumb */ , HLF_COUNT /* MUST be the last one */ } hlf_T; /* the HL_FLAGS must be in the same order as the HLF_ enums! */ #define HL_FLAGS {'8', '@', 'd', 'e', 'h', 'i', 'l', 'm', 'M', \ 'n', 'r', 's', 'S', 'c', 't', 'v', 'V', 'w', 'W', \ - 'f', 'F', 'A', 'C', 'D', 'T', '>', 'B', 'P', 'R', 'L'} + 'f', 'F', 'A', 'C', 'D', 'T', '>', \ + 'B', 'P', 'R', 'L', \ + '+', '=', 'x', 'X'} /* * Boolean constants @@ -1566,7 +1572,8 @@ int vim_memcmp __ARGS((void *, void *, size_t)); #define VV_BEVAL_LNUM 41 #define VV_BEVAL_COL 42 #define VV_BEVAL_TEXT 43 -#define VV_LEN 44 /* number of v: vars */ +#define VV_SCROLLSTART 44 +#define VV_LEN 45 /* number of v: vars */ #ifdef FEAT_CLIPBOARD |