From a6759381a590b2d395e05b109ca9ccfc356be5a8 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 21 Jan 2023 21:56:06 +0000 Subject: patch 9.0.1227: no cmdline completion for :runtime Problem: No cmdline completion for :runtime. Solution: Add completion for :runtime. (closes #11853, closes #11447) Improve the resulting matches. --- src/vim.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/vim.h') diff --git a/src/vim.h b/src/vim.h index 7d58b06a36..930b17b104 100644 --- a/src/vim.h +++ b/src/vim.h @@ -811,6 +811,7 @@ extern int (*dyn_libintl_wputenv)(const wchar_t *envstring); #define EXPAND_DISASSEMBLE 50 #define EXPAND_BREAKPOINT 51 #define EXPAND_SCRIPTNAMES 52 +#define EXPAND_RUNTIME 53 // Values for exmode_active (0 is no exmode) #define EXMODE_NORMAL 1 @@ -2661,6 +2662,7 @@ typedef enum { #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 // Lowest number used for window ID. Cannot have this many windows. #define LOWEST_WIN_ID 1000 -- cgit v1.2.3