From 3258183b1c6ab4f4269ad4854f6ea21cda473251 Mon Sep 17 00:00:00 2001 From: ineed bots Date: Tue, 21 Dec 2021 21:43:42 -0600 Subject: [PATCH] better code completion --- .vscode/settings.json | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index ef0aeab..1227c1a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,8 +1,18 @@ { "astyle.astylerc": "${workspaceRoot}/.astylerc", "astyle.additional_languages": [ - "gsc" + "gsc", + "gsx" ], "editor.defaultFormatter": "chiehyu.vscode-astyle", - "editor.formatOnSave": true -} \ No newline at end of file + "editor.formatOnSave": true, + "editor.quickSuggestions": { + "other": true, + "comments": true, + "strings": true + }, + "vscode-codscript.use_builtin_completionItems": false, + "files.associations": { + "*.gsx": "gsc" + } +}