Skip to content

Commit

Permalink
improvement: add support for angular brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanLovato committed Aug 12, 2024
1 parent 0080c92 commit 98605b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions languages/gdscript/brackets.scm
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
("(" @open ")" @close)
("[" @open "]" @close)
("{" @open "}" @close)
1 change: 1 addition & 0 deletions languages/gdscript/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
]

0 comments on commit 98605b1

Please sign in to comment.