Skip to content

Commit

Permalink
Fix commonlisp filetypes typo and auto-pairs (helix-editor#5091)
Browse files Browse the repository at this point in the history
  • Loading branch information
garlic0x1 authored and Frederik Vestre committed Feb 6, 2023
1 parent cb90e95 commit 13658aa
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion languages.toml
Original file line number Diff line number Diff line change
Expand Up @@ -918,13 +918,19 @@ grammar = "scheme"
name = "common-lisp"
scope = "source.lisp"
roots = []
file-types = ["lisp", "asd", "cl", "l", "lsp", "ny"," podsl", "sexp"]
file-types = ["lisp", "asd", "cl", "l", "lsp", "ny", "podsl", "sexp"]
shebangs = ["lisp", "sbcl", "ccl", "clisp", "ecl"]
comment-token = ";"
indent = { tab-width = 2, unit = " " }
language-server = { command = "cl-lsp", args = [ "stdio" ] }
grammar = "scheme"

[language.auto-pairs]
'(' = ')'
'{' = '}'
'[' = ']'
'"' = '"'

[[language]]
name = "comment"
scope = "scope.comment"
Expand Down

0 comments on commit 13658aa

Please sign in to comment.