diff options
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h index 584117633..122e47503 100644 --- a/src/structs.h +++ b/src/structs.h @@ -1198,6 +1198,7 @@ typedef struct hashitem_S // Initial size for a hashtable. Our items are relatively small and growing // is expensive, thus use 16 as a start. Must be a power of 2. +// This allows for storing 10 items (2/3 of 16) before a resize is needed. #define HT_INIT_SIZE 16 typedef struct hashtable_S @@ -2395,6 +2396,9 @@ struct file_buffer #ifdef FEAT_INS_EXPAND char_u *b_p_cpt; // 'complete' #endif +#ifdef BACKSLASH_IN_FILENAME + char_u *b_p_csl; // 'completeslash' +#endif #ifdef FEAT_COMPL_FUNC char_u *b_p_cfu; // 'completefunc' char_u *b_p_ofu; // 'omnifunc' |