Skip to content

Commit a34ba07

Browse files
authored
Fix commonlisp filetypes typo and auto-pairs (helix-editor#5091)
1 parent c5bfb79 commit a34ba07

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

languages.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -918,13 +918,19 @@ grammar = "scheme"
918918
name = "common-lisp"
919919
scope = "source.lisp"
920920
roots = []
921-
file-types = ["lisp", "asd", "cl", "l", "lsp", "ny"," podsl", "sexp"]
921+
file-types = ["lisp", "asd", "cl", "l", "lsp", "ny", "podsl", "sexp"]
922922
shebangs = ["lisp", "sbcl", "ccl", "clisp", "ecl"]
923923
comment-token = ";"
924924
indent = { tab-width = 2, unit = " " }
925925
language-server = { command = "cl-lsp", args = [ "stdio" ] }
926926
grammar = "scheme"
927927

928+
[language.auto-pairs]
929+
'(' = ')'
930+
'{' = '}'
931+
'[' = ']'
932+
'"' = '"'
933+
928934
[[language]]
929935
name = "comment"
930936
scope = "scope.comment"

0 commit comments

Comments
 (0)