Fix commonlisp filetypes typo and auto-pairs (#5091)

pull/1/head
garlic0x1 1 year ago committed by GitHub
parent c5bfb792b2
commit a34ba071be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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"

Loading…
Cancel
Save