Fix commonlisp filetypes typo and auto-pairs (#5091)
This commit is contained in:
parent
c5bfb792b2
commit
a34ba071be
1 changed files with 7 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue