diff options
Diffstat (limited to 'src/nvim/ex_getln.h')
-rw-r--r-- | src/nvim/ex_getln.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/nvim/ex_getln.h b/src/nvim/ex_getln.h index 6175c30924..2b82f934d5 100644 --- a/src/nvim/ex_getln.h +++ b/src/nvim/ex_getln.h @@ -23,6 +23,16 @@ #define WILD_ESCAPE 128 #define WILD_ICASE 256 +/* + * There are four history tables: + */ +#define HIST_CMD 0 /* colon commands */ +#define HIST_SEARCH 1 /* search commands */ +#define HIST_EXPR 2 /* expressions (from entering = register) */ +#define HIST_INPUT 3 /* input() lines */ +#define HIST_DEBUG 4 /* debug commands */ +#define HIST_COUNT 5 /* number of history tables */ + typedef char_u *(*CompleteListItemGetter)(expand_T *, int); #ifdef INCLUDE_GENERATED_DECLARATIONS |