diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-08-23 19:41:29 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-08-23 19:41:29 +0800 |
commit | 6cbd142a48eec2eff2ffdc02a7bbf7b7ee6f0152 (patch) | |
tree | e8cd385e97a86a3a2c78a5c6c323455b4f9887ea /script | |
parent | c08df413a232ffe7e776b133174bc05cc1a4e287 (diff) | |
download | lua-language-server-6cbd142a48eec2eff2ffdc02a7bbf7b7ee6f0152.zip |
`Lua.completion.showWord` default to `Fallback`
Diffstat (limited to 'script')
-rw-r--r-- | script/config/config.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/config/config.lua b/script/config/config.lua index e83d45f1..57a16b1b 100644 --- a/script/config/config.lua +++ b/script/config/config.lua @@ -180,7 +180,7 @@ local Template = { ['Lua.completion.keywordSnippet'] = Type.String >> 'Replace', ['Lua.completion.displayContext'] = Type.Integer >> 6, ['Lua.completion.workspaceWord'] = Type.Boolean >> true, - ['Lua.completion.showWord'] = Type.String >> 'Enable', + ['Lua.completion.showWord'] = Type.String >> 'Fallback', ['Lua.completion.autoRequire'] = Type.Boolean >> true, ['Lua.completion.showParams'] = Type.Boolean >> true, ['Lua.completion.requireSeparator'] = Type.String >> '.', |