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

11
.vscode/tasks.json vendored
View File

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