mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 22:43:18 +00:00
This PR extracts PureScript support into an extension and removes the built-in PureScript support from Zed. Release Notes: - Removed built-in support for PureScript, in favor of making it available as an extension. The PureScript extension will be suggested for download when you open a `.purs` file.
14 lines
542 B
TOML
14 lines
542 B
TOML
name = "PureScript"
|
|
grammar = "purescript"
|
|
path_suffixes = ["purs"]
|
|
autoclose_before = ",=)}]"
|
|
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 },
|
|
{ start = "'", end = "'", close = true, newline = false },
|
|
{ start = "`", end = "`", close = true, newline = false },
|
|
]
|