mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-26 18:41:10 +00:00
Add .cljc, .edn, & .bb to Clojure filename extensions (#8285)
Release Notes: - Added .cljc, .edn, & .bb to Clojure filename extensions ([#7845](https://github.com/zed-industries/zed/issues/7845)).
This commit is contained in:
parent
351e6a5de2
commit
d993dd3b2c
2 changed files with 3 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
name = "Clojure"
|
||||
grammar = "clojure"
|
||||
path_suffixes = ["clj", "cljs"]
|
||||
path_suffixes = ["clj", "cljs", "cljc", "edn", "bb"]
|
||||
line_comments = [";; "]
|
||||
autoclose_before = "}])"
|
||||
brackets = [
|
||||
|
|
|
@ -14,6 +14,8 @@ extend-exclude = [
|
|||
# Editor and file finder rely on partial typing and custom in-string syntax
|
||||
"crates/file_finder/src/file_finder_tests.rs",
|
||||
"crates/editor/src/editor_tests.rs",
|
||||
# Clojure uses .edn filename extension, which is not a misspelling of "end"
|
||||
"crates/languages/src/clojure/config.toml",
|
||||
]
|
||||
|
||||
[default]
|
||||
|
|
Loading…
Reference in a new issue