Skip to content

Commit 4176769

Browse files
committed
Add basic support for common lisp
1 parent 59cfe95 commit 4176769

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

languages.toml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -878,14 +878,25 @@ source = { git = "https://github.com/ganezdragon/tree-sitter-perl", rev = "0ac2c
878878

879879
[[language]]
880880
name = "racket"
881-
scope = "source.rkt"
881+
scope = "source.racket"
882882
roots = []
883-
file-types = ["rkt"]
883+
file-types = ["rkt", "rktd", "rktl", "scrbl"]
884884
shebangs = ["racket"]
885885
comment-token = ";"
886886
language-server = { command = "racket", args = ["-l", "racket-langserver"] }
887887
grammar = "scheme"
888888

889+
[[language]]
890+
name = "common-lisp"
891+
scope = "source.lisp"
892+
roots = []
893+
file-types = ["lisp", "asd", "cl", "l", "lsp", "ny"," podsl", "sexp"]
894+
shebangs = ["lisp", "sbcl", "ccl", "clisp", "ecl"]
895+
comment-token = ";"
896+
indent = { tab-width = 2, unit = " " }
897+
language-server = { command = "cl-lsp", args = [ "stdio" ] }
898+
grammar = "scheme"
899+
889900
[[language]]
890901
name = "comment"
891902
scope = "scope.comment"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
; inherits: scheme
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
; inherits: scheme

0 commit comments

Comments
 (0)