diff options
author | Nathan Craddock <nzcraddock@gmail.com> | 2021-08-18 13:50:22 -0600 |
---|---|---|
committer | Nathan Craddock <nzcraddock@gmail.com> | 2021-08-18 13:50:22 -0600 |
commit | 822e794883b41bf5e8758cce5d4601a69f3ee874 (patch) | |
tree | ed23bf08c58d9497ab60bca41486d38449cabfe1 /script/config | |
parent | 907bbbe0925e49f7b347cb81c20159f20dd98854 (diff) | |
download | lua-language-server-822e794883b41bf5e8758cce5d4601a69f3ee874.zip |
Lua.completion.word configuration option
Adds an option to entirely disable word completions. More specifically,
this disables CompletionItemKind.Text, but I used "word" to align with
the existing workspaceWord configuration option.
Diffstat (limited to 'script/config')
-rw-r--r-- | script/config/config.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/script/config/config.lua b/script/config/config.lua index 9d3f8085..bfcfa572 100644 --- a/script/config/config.lua +++ b/script/config/config.lua @@ -181,6 +181,7 @@ local Template = { ['Lua.completion.keywordSnippet'] = Type.String >> 'Replace', ['Lua.completion.displayContext'] = Type.Integer >> 6, ['Lua.completion.workspaceWord'] = Type.Boolean >> true, + ['Lua.completion.word'] = Type.Boolean >> true, ['Lua.completion.autoRequire'] = Type.Boolean >> true, ['Lua.completion.showParams'] = Type.Boolean >> true, ['Lua.signatureHelp.enable'] = Type.Boolean >> true, |