init: this is the inital commit

This commit is contained in:
2026-04-23 18:52:34 +02:00
commit b809c1db8d
7 changed files with 86 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
; Standard brackets
("[" @open "]" @close)
("{" @open "}" @close)
("(" @open ")" @close)
; EBNF specific sequence brackets
("(/" @open "/)" @close)
("(:" @open ":)" @close)
; Strings
("\"" @open "\"" @close)
("'" @open "'" @close)
; Special sequence
("?" @open "?" @close)