mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-28 13:18:04 +00:00
8d7f5eab79
Release Notes: - Extracted Ocaml language support into an extension --------- Co-authored-by: Marshall <marshall@zed.dev>
13 lines
433 B
TOML
13 lines
433 B
TOML
name = "OCaml Interface"
|
|
code_fence_block_name = "ocaml"
|
|
grammar = "ocaml_interface"
|
|
path_suffixes = ["mli"]
|
|
block_comment = ["(* ", "*)"]
|
|
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 = true }
|
|
]
|
|
tab_size = 2
|