We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
editor.quickSuggestions
1 parent b411346 commit 53224d9Copy full SHA for 53224d9
package.json
@@ -2881,7 +2881,16 @@
2881
]
2882
}
2883
2884
- ]
+ ],
2885
+ "configurationDefaults": {
2886
+ "[lua]": {
2887
+ "editor.quickSuggestions": {
2888
+ "other": "on",
2889
+ "comments": "inline",
2890
+ "strings": "on"
2891
+ }
2892
2893
2894
},
2895
"description": "Lua Language Server coded by Lua",
2896
"displayName": "Lua",
package/package.lua
@@ -61,6 +61,15 @@ return {
61
62
63
64
+ configurationDefaults = {
65
+ ["[lua]"] = {
66
+ ["editor.quickSuggestions"] = {
67
+ comments = "inline",
68
+ other = "on",
69
+ strings = "on",
70
+ },
71
72
73
74
capabilities = {
75
untrustedWorkspaces = {
0 commit comments