diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2020-06-08 10:39:28 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2020-06-08 10:39:28 +0800 |
commit | 1696fb268f2a08c51ae703fe2dcd93e7f2a4b8b7 (patch) | |
tree | 3e565da3dcd753cbede157f04164a484e650d2b6 /script/config.lua | |
parent | 3b6c3a3e5df704f3a30ed62aee1017ea7a3a383e (diff) | |
download | lua-language-server-1696fb268f2a08c51ae703fe2dcd93e7f2a4b8b7.zip |
#172 代码片段的默认设置与VSCode设置的默认值不一致
Diffstat (limited to 'script/config.lua')
-rw-r--r-- | script/config.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/script/config.lua b/script/config.lua index baca3e63..146631b8 100644 --- a/script/config.lua +++ b/script/config.lua @@ -120,9 +120,9 @@ local ConfigTemplate = { )} }, completion = { - enable = {true, Boolean}, - callSnippet = {'Both', String}, - keywordSnippet = {'Both', String}, + enable = {true, Boolean}, + callSnippet = {'Disable', String}, + keywordSnippet = {'Replace', String}, }, color = { mode = {'Semantic', String}, |