diff options
author | garlic0x1 | 2022-12-12 01:59:27 +0000 |
---|---|---|
committer | GitHub | 2022-12-12 01:59:27 +0000 |
commit | a34ba071be0a48a35f36ada7759dee53d783e57b (patch) | |
tree | 439975d9f572ec2d860bbadf24e99b998fb97eae | |
parent | c5bfb792b2a26545f6515a1e7b62d4f37b10841e (diff) |
Fix commonlisp filetypes typo and auto-pairs (#5091)
-rw-r--r-- | languages.toml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/languages.toml b/languages.toml index 06af52bd..dae675df 100644 --- a/languages.toml +++ b/languages.toml @@ -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" |