mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-25 19:03:30 +04:00
Add basic support for common lisp
This commit is contained in:
parent
59cfe95776
commit
417676953b
@ -878,14 +878,25 @@ source = { git = "https://github.com/ganezdragon/tree-sitter-perl", rev = "0ac2c
|
|||||||
|
|
||||||
[[language]]
|
[[language]]
|
||||||
name = "racket"
|
name = "racket"
|
||||||
scope = "source.rkt"
|
scope = "source.racket"
|
||||||
roots = []
|
roots = []
|
||||||
file-types = ["rkt"]
|
file-types = ["rkt", "rktd", "rktl", "scrbl"]
|
||||||
shebangs = ["racket"]
|
shebangs = ["racket"]
|
||||||
comment-token = ";"
|
comment-token = ";"
|
||||||
language-server = { command = "racket", args = ["-l", "racket-langserver"] }
|
language-server = { command = "racket", args = ["-l", "racket-langserver"] }
|
||||||
grammar = "scheme"
|
grammar = "scheme"
|
||||||
|
|
||||||
|
[[language]]
|
||||||
|
name = "common-lisp"
|
||||||
|
scope = "source.lisp"
|
||||||
|
roots = []
|
||||||
|
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]]
|
[[language]]
|
||||||
name = "comment"
|
name = "comment"
|
||||||
scope = "scope.comment"
|
scope = "scope.comment"
|
||||||
|
1
runtime/queries/common-lisp/highlights.scm
Normal file
1
runtime/queries/common-lisp/highlights.scm
Normal file
@ -0,0 +1 @@
|
|||||||
|
; inherits: scheme
|
1
runtime/queries/common-lisp/injections.scm
Normal file
1
runtime/queries/common-lisp/injections.scm
Normal file
@ -0,0 +1 @@
|
|||||||
|
; inherits: scheme
|
Loading…
Reference in New Issue
Block a user