ZIm/crates/zed/languages/rust/config.toml
Antonio Scandurra 05d7e9c4e7 Start on autoclosing pairs
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
2021-10-06 16:34:57 +02:00

9 lines
224 B
TOML

name = "Rust"
path_suffixes = ["rs"]
autoclose_pairs = [
{ start = "{", end = "}" },
{ start = "[", end = "]" },
{ start = "(", end = ")" },
{ start = "\"", end = "\"" },
{ start = "/*", end = " */" },
]