Skip to content

Commit 53224d9

Browse files
committed
default editor.quickSuggestions
1 parent b411346 commit 53224d9

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

package.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2881,7 +2881,16 @@
28812881
]
28822882
}
28832883
}
2884-
]
2884+
],
2885+
"configurationDefaults": {
2886+
"[lua]": {
2887+
"editor.quickSuggestions": {
2888+
"other": "on",
2889+
"comments": "inline",
2890+
"strings": "on"
2891+
}
2892+
}
2893+
}
28852894
},
28862895
"description": "Lua Language Server coded by Lua",
28872896
"displayName": "Lua",

package/package.lua

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,15 @@ return {
6161
},
6262
},
6363
},
64+
configurationDefaults = {
65+
["[lua]"] = {
66+
["editor.quickSuggestions"] = {
67+
comments = "inline",
68+
other = "on",
69+
strings = "on",
70+
},
71+
},
72+
},
6473
},
6574
capabilities = {
6675
untrustedWorkspaces = {

0 commit comments

Comments
 (0)