This commit is contained in:
ineed bots 2021-12-21 21:55:40 -06:00
parent 93909c4577
commit 3221f2791e
2 changed files with 48 additions and 57 deletions

10
.vscode/settings.json vendored
View File

@ -1,10 +1,8 @@
{
"astyle.astylerc": "${workspaceRoot}/.astylerc",
"astyle.additional_languages": [
"gsc"
],
"astyle.additional_languages": ["gsc"],
"[gsc]": {
"editor.defaultFormatter": "chiehyu.vscode-astyle",
"editor.defaultFormatter": "chiehyu.vscode-astyle"
},
"editor.quickSuggestions": {
"other": true,
@ -14,9 +12,7 @@
"vscode-codscript.use_builtin_completionItems": false,
"triggerTaskOnSave.tasks": {
"Compile current GSC File": [
"*.gsc"
]
"Compile current GSC File": ["*.gsc"]
},
"Lua.diagnostics.globals": [
"InheritFrom",

11
.vscode/tasks.json vendored
View File

@ -9,19 +9,14 @@
"options": {
"shell": {
"executable": "cmd.exe",
"args": [
"/d",
"/c"
]
"args": ["/d", "/c"]
},
"cwd": "${fileDirname}"
},
"command": "${workspaceRoot}/.vscode/Compiler.exe",
"args": [
"\"${fileBasename}\""
],
"args": ["\"${fileBasename}\""],
"problemMatcher": [],
"isBackground": true,
"isBackground": true
}
]
}