
Current limitations: * Not able to navigate into JAR files Release Notes: - Added Clojure language support --------- Co-authored-by: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com>
12 lines
429 B
TOML
12 lines
429 B
TOML
name = "Clojure"
|
|
grammar = "clojure"
|
|
path_suffixes = ["clj", "cljs"]
|
|
line_comments = [";; "]
|
|
autoclose_before = "}])"
|
|
brackets = [
|
|
{ start = "{", end = "}", close = true, newline = true },
|
|
{ start = "[", end = "]", close = true, newline = true },
|
|
{ start = "(", end = ")", close = true, newline = true },
|
|
{ start = "\"", end = "\"", close = true, newline = false, not_in = ["string"] },
|
|
]
|
|
word_characters = ["-"]
|