diff options
author | skippi <jbtcao@gmail.com> | 2020-10-18 21:36:30 -0500 |
---|---|---|
committer | skippi <jbtcao@gmail.com> | 2020-10-26 15:20:12 -0500 |
commit | 089f4f8e4a297aa8e7c689331ffd16ffe415120a (patch) | |
tree | 8fc9491acc11254133dfd2c539dd221954b5086d /src/nvim/buffer_defs.h | |
parent | a22fe09b90a52f451d9fd8d3372b8c390dd1dc1a (diff) | |
download | rneovim-089f4f8e4a297aa8e7c689331ffd16ffe415120a.tar.gz rneovim-089f4f8e4a297aa8e7c689331ffd16ffe415120a.tar.bz2 rneovim-089f4f8e4a297aa8e7c689331ffd16ffe415120a.zip |
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 vim/vim#3612)
https://github.com/vim/vim/commit/ac3150d385e6e3f3fe76642aac3cda954d30583f
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index 1223f2bdab..8e855cb644 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -661,6 +661,9 @@ struct file_buffer { char_u *b_p_com; ///< 'comments' char_u *b_p_cms; ///< 'commentstring' char_u *b_p_cpt; ///< 'complete' +#ifdef BACKSLASH_IN_FILENAME + char_u *b_p_csl; ///< 'completeslash' +#endif char_u *b_p_cfu; ///< 'completefunc' char_u *b_p_ofu; ///< 'omnifunc' char_u *b_p_tfu; ///< 'tagfunc' |