diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-01-26 09:58:27 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2023-01-26 11:55:34 +0800 |
commit | 6320c91c50e4c0ee5c366241f9a413c4edbfdad8 (patch) | |
tree | fe86bb030a80ab6459b1903229693a113d5d1088 /src/nvim/runtime.h | |
parent | 6644786db078e019426f90cf85da50e3fa1b6a67 (diff) | |
download | rneovim-6320c91c50e4c0ee5c366241f9a413c4edbfdad8.tar.gz rneovim-6320c91c50e4c0ee5c366241f9a413c4edbfdad8.tar.bz2 rneovim-6320c91c50e4c0ee5c366241f9a413c4edbfdad8.zip |
vim-patch:9.0.1231: completion of :runtime does not handle {where} argument
Problem: Completion of :runtime does not handle {where} argument.
Solution: Parse the {where} argument. (closes vim/vim#11863)
https://github.com/vim/vim/commit/3770f4c9cde7b5fcd10b6fa2e665cd0b69450fb2
Diffstat (limited to 'src/nvim/runtime.h')
-rw-r--r-- | src/nvim/runtime.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/runtime.h b/src/nvim/runtime.h index be2663d52a..3821fc4bbc 100644 --- a/src/nvim/runtime.h +++ b/src/nvim/runtime.h @@ -105,7 +105,7 @@ typedef kvec_t(char *) CharVec; #define DIP_NORTP 0x20 // do not use 'runtimepath' #define DIP_NOAFTER 0x40 // skip "after" directories #define DIP_AFTER 0x80 // only use "after" directories -#define DIP_PRNEXT 0x100 // for print also file extension +#define DIP_KEEPEXT 0x100 // for completion: include file extension #define DIP_DIRFILE 0x200 // find both files and directories #ifdef INCLUDE_GENERATED_DECLARATIONS |