Skip to content

Commit

Permalink
Fix commonlisp filetypes typo and auto-pairs (#5091)
Browse files Browse the repository at this point in the history
  • Loading branch information
garlic0x1 authored Dec 12, 2022
1 parent c5bfb79 commit a34ba07
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 a34ba07

Please sign in to comment.