summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2023-02-04 15:02:26 +0800
committer最萌小汐 <sumneko@hotmail.com>2023-02-04 15:02:26 +0800
commit9ba615e2af45cfe98d59612eb058f78372aa2966 (patch)
treeaeb09fe999a2a7801a3fee4b1afa461bd2bacd30 /script
parentdfeb14fdbe9acd35cb845e53f707b62b886bf73a (diff)
downloadlua-language-server-9ba615e2af45cfe98d59612eb058f78372aa2966.zip
fix
#1872
Diffstat (limited to 'script')
-rw-r--r--script/config/template.lua12
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',