diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2023-01-22 11:19:58 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-22 11:19:58 +0800 |
| commit | 18fb669b9be1e7dac73dc3d97c2e3e7fd4013099 (patch) | |
| tree | fd1ea024d899214cf3759a62bb0ee3ea87bbd815 /src/nvim/runtime.h | |
| parent | 108452aabad80af08351d137f528985ac339b295 (diff) | |
| download | rneovim-18fb669b9be1e7dac73dc3d97c2e3e7fd4013099.tar.gz rneovim-18fb669b9be1e7dac73dc3d97c2e3e7fd4013099.tar.bz2 rneovim-18fb669b9be1e7dac73dc3d97c2e3e7fd4013099.zip | |
fix(completion): include lua syntaxes in :ownsyntax completion (#21941)
This just removes DIP_LUA and always executes its branches.
Also add tests for cmdline completion for other lua runtime files.
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 de363020f8..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_LUA 0x100 // also use ".lua" files #define DIP_DIRFILE 0x200 // find both files and directories #ifdef INCLUDE_GENERATED_DECLARATIONS |