1
0
forked from aniani/vim

patch 8.1.1769: 'shellslash' is also used for completion

Problem:    'shellslash' is also used for completion.
Solution:   Add the 'completeslash' option. (Yasuhiro Matsumoto, closes #3612)
This commit is contained in:
Bram Moolenaar
2019-07-28 16:36:39 +02:00
parent bca9c30193
commit ac3150d385
8 changed files with 146 additions and 4 deletions

View File

@@ -412,6 +412,9 @@ EXTERN int p_confirm; // 'confirm'
EXTERN int p_cp; // 'compatible'
#ifdef FEAT_INS_EXPAND
EXTERN char_u *p_cot; // 'completeopt'
# ifdef BACKSLASH_IN_FILENAME
EXTERN char_u *p_csl; // 'completeslash'
# endif
EXTERN long p_ph; // 'pumheight'
EXTERN long p_pw; // 'pumwidth'
#endif
@@ -997,6 +1000,9 @@ enum
, BV_DICT
, BV_TSR
#endif
#ifdef BACKSLASH_IN_FILENAME
, BV_CSL
#endif
#ifdef FEAT_COMPL_FUNC
, BV_CFU
#endif