better code completion

This commit is contained in:
ineed bots 2021-12-21 21:43:42 -06:00
parent 5021547734
commit 3258183b1c

14
.vscode/settings.json vendored
View File

@ -1,8 +1,18 @@
{ {
"astyle.astylerc": "${workspaceRoot}/.astylerc", "astyle.astylerc": "${workspaceRoot}/.astylerc",
"astyle.additional_languages": [ "astyle.additional_languages": [
"gsc" "gsc",
"gsx"
], ],
"editor.defaultFormatter": "chiehyu.vscode-astyle", "editor.defaultFormatter": "chiehyu.vscode-astyle",
"editor.formatOnSave": true "editor.formatOnSave": true,
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"vscode-codscript.use_builtin_completionItems": false,
"files.associations": {
"*.gsx": "gsc"
}
} }