aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/runtime.h
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-01-26 09:44:15 +0800
committerzeertzjq <zeertzjq@outlook.com>2023-01-26 11:55:32 +0800
commit6644786db078e019426f90cf85da50e3fa1b6a67 (patch)
treead044561cd9b9c336ade9661f54e18fcbd9f7e46 /src/nvim/runtime.h
parent5ac34cf55db2b00c044fa95f75766dd89dd36ba9 (diff)
downloadrneovim-6644786db078e019426f90cf85da50e3fa1b6a67.tar.gz
rneovim-6644786db078e019426f90cf85da50e3fa1b6a67.tar.bz2
rneovim-6644786db078e019426f90cf85da50e3fa1b6a67.zip
vim-patch:9.0.1227: no cmdline completion for :runtime
Problem: No cmdline completion for :runtime. Solution: Add completion for :runtime. (closes vim/vim#11853, closes vim/vim#11447) Improve the resulting matches. https://github.com/vim/vim/commit/a6759381a590b2d395e05b109ca9ccfc356be5a8
Diffstat (limited to 'src/nvim/runtime.h')
-rw-r--r--src/nvim/runtime.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/runtime.h b/src/nvim/runtime.h
index 97063b900c..be2663d52a 100644
--- a/src/nvim/runtime.h
+++ b/src/nvim/runtime.h
@@ -105,6 +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_DIRFILE 0x200 // find both files and directories
#ifdef INCLUDE_GENERATED_DECLARATIONS