mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-11 21:00:35 +00:00
Release Notes: - Extracted Elm language support into an extension Co-authored-by: Marshall <marshall@zed.dev>
13 lines
503 B
TOML
13 lines
503 B
TOML
name = "Elm"
|
|
grammar = "elm"
|
|
path_suffixes = ["elm"]
|
|
line_comments = ["-- "]
|
|
block_comment = ["{- ", " -}"]
|
|
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"] },
|
|
{ start = "'", end = "'", close = true, newline = false, not_in = ["string", "comment"] },
|
|
]
|
|
tab_size = 2
|