diff --git a/languages/gdscript/brackets.scm b/languages/gdscript/brackets.scm index ccb58e3..191fd9c 100644 --- a/languages/gdscript/brackets.scm +++ b/languages/gdscript/brackets.scm @@ -1,2 +1,3 @@ ("(" @open ")" @close) ("[" @open "]" @close) +("{" @open "}" @close) diff --git a/languages/gdscript/config.toml b/languages/gdscript/config.toml index 30bfc4f..1abae33 100644 --- a/languages/gdscript/config.toml +++ b/languages/gdscript/config.toml @@ -5,4 +5,5 @@ line_comments = ["# ", "## "] brackets = [ { start = "[", end = "]", close = true, newline = true }, { start = "(", end = ")", close = true, newline = true }, + { start = "{", end = "}", close = true, newline = true }, ]