diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2023-01-26 10:38:53 +0800 |
|---|---|---|
| committer | zeertzjq <zeertzjq@outlook.com> | 2023-01-26 11:55:34 +0800 |
| commit | f03f6263bb3eb0b28b759292cb6ef4465a05cafe (patch) | |
| tree | 9529efa057f829a15d8fa4dc1c5ee54583f01463 /src/nvim/runtime.h | |
| parent | 6320c91c50e4c0ee5c366241f9a413c4edbfdad8 (diff) | |
| download | rneovim-f03f6263bb3eb0b28b759292cb6ef4465a05cafe.tar.gz rneovim-f03f6263bb3eb0b28b759292cb6ef4465a05cafe.tar.bz2 rneovim-f03f6263bb3eb0b28b759292cb6ef4465a05cafe.zip | |
vim-patch:9.0.1238: :runtime completion can be further improved
Problem: :runtime completion can be further improved.
Solution: Also complete the {where} argument values and adjust the
completion for that. (closes vim/vim#11874)
https://github.com/vim/vim/commit/5c8771bc5a2be123ab8e6325fa60ed524e8efb09
Diffstat (limited to 'src/nvim/runtime.h')
| -rw-r--r-- | src/nvim/runtime.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/runtime.h b/src/nvim/runtime.h index 3821fc4bbc..97063b900c 100644 --- a/src/nvim/runtime.h +++ b/src/nvim/runtime.h @@ -105,7 +105,6 @@ 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_KEEPEXT 0x100 // for completion: include file extension #define DIP_DIRFILE 0x200 // find both files and directories #ifdef INCLUDE_GENERATED_DECLARATIONS |