18 lines
946 B
TOML
18 lines
946 B
TOML
name = "Rust"
|
|
grammar = "rust"
|
|
path_suffixes = ["rs"]
|
|
line_comments = ["// ", "/// ", "//! "]
|
|
autoclose_before = ";:.,=}])>"
|
|
brackets = [
|
|
{ start = "{", end = "}", close = true, newline = true },
|
|
{ start = "r#\"", end = "\"#", close = true, newline = true, not_in = ["string", "comment"] },
|
|
{ start = "r##\"", end = "\"##", close = true, newline = true, not_in = ["string", "comment"] },
|
|
{ start = "r###\"", end = "\"###", close = true, newline = true, not_in = ["string", "comment"] },
|
|
{ start = "[", end = "]", close = true, newline = true },
|
|
{ start = "(", end = ")", close = true, newline = true },
|
|
{ start = "<", end = ">", close = false, newline = true, not_in = ["string", "comment"] },
|
|
{ start = "\"", end = "\"", close = true, newline = false, not_in = ["string"] },
|
|
{ start = "/*", end = " */", close = true, newline = false, not_in = ["string", "comment"] },
|
|
]
|
|
collapsed_placeholder = " /* ... */ "
|