From 07c9b20c75d318dcdee9e5196bca12ee66d041ba Mon Sep 17 00:00:00 2001 From: shadmansaleh Date: Wed, 2 Jun 2021 19:39:24 +0600 Subject: enhance(runtime): Enable completion for lua files Enabled for `:colorscheme` `:compiler` filetype --- src/nvim/vim.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/nvim/vim.h') diff --git a/src/nvim/vim.h b/src/nvim/vim.h index 0245c472ef..df4ab04eb6 100644 --- a/src/nvim/vim.h +++ b/src/nvim/vim.h @@ -313,6 +313,7 @@ enum { FOLD_TEXT_LEN = 51 }; //!< buffer size for get_foldtext() #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_LUA 0x100 // also use ".lua" files // Lowest number used for window ID. Cannot have this many windows per tab. #define LOWEST_WIN_ID 1000 -- cgit