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:
Wes Morgan 2024-02-23 14:46:27 -07:00 committed by GitHub
parent 351e6a5de2
commit d993dd3b2c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View file

@ -1,6 +1,6 @@
name = "Clojure"
grammar = "clojure"
path_suffixes = ["clj", "cljs"]
path_suffixes = ["clj", "cljs", "cljc", "edn", "bb"]
line_comments = [";; "]
autoclose_before = "}])"
brackets = [

View file

@ -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]