Fix bad formatting on several operators (#605)

Many, many formatter and syntax highlighting improvements.
This commit is contained in:
David Kincaid
2024-06-24 13:48:44 -07:00
committed by GitHub
parent 17af8e20c9
commit c07fe37f30
26 changed files with 357 additions and 65 deletions

View File

@@ -271,6 +271,24 @@
"default": true,
"description": "Whether to reveal the terminal when launching the Godot Editor"
},
"godotTools.formatter.emptyLinesBeforeFunctions": {
"type": "string",
"enum": [
"one",
"two"
],
"enumDescriptions": [
"One line before functions. A more compact style.",
"Two lines before functions. Conforms to the official GDScript style guide."
],
"default": "two",
"description": "Number of blank lines to leave before functions."
},
"godotTools.formatter.denseFunctionDeclarations": {
"type": "boolean",
"default": false,
"description": "Whether extra space should be removed from function declarations"
},
"godotTools.lsp.serverProtocol": {
"type": [
"string"