diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2023-02-04 15:02:26 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2023-02-04 15:02:26 +0800 |
commit | 9ba615e2af45cfe98d59612eb058f78372aa2966 (patch) | |
tree | aeb09fe999a2a7801a3fee4b1afa461bd2bacd30 /script | |
parent | dfeb14fdbe9acd35cb845e53f707b62b886bf73a (diff) | |
download | lua-language-server-9ba615e2af45cfe98d59612eb058f78372aa2966.zip |
fix
#1872
Diffstat (limited to 'script')
-rw-r--r-- | script/config/template.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/script/config/template.lua b/script/config/template.lua index 6e1c2835..e93ffa08 100644 --- a/script/config/template.lua +++ b/script/config/template.lua @@ -396,13 +396,13 @@ local template = { -- VSCode ['files.associations'] = Type.Hash(Type.String, Type.String), -- copy from VSCode default - ['files.exclude'] = Type.Hash(Type.String, Type.Boolean) << { + ['files.exclude'] = Type.Hash(Type.String, Type.Boolean) >> { ["**/.DS_Store"] = true, - ["**/.git"] = true, - ["**/.hg"] = true, - ["**/.svn"] = true, - ["**/CVS"] = true, - ["**/Thumbs.db"] = true + ["**/.git"] = true, + ["**/.hg"] = true, + ["**/.svn"] = true, + ["**/CVS"] = true, + ["**/Thumbs.db"] = true, }, ['editor.semanticHighlighting.enabled'] = Type.Or(Type.Boolean, Type.String), ['editor.acceptSuggestionOnEnter'] = Type.String >> 'on', |