mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-03 17:44:30 +00:00
343c88574a
Detect .env.* as Shell Script Move non glob json/jsonc/toml file_types into langauges/*/config.toml
11 lines
471 B
TOML
11 lines
471 B
TOML
name = "TOML"
|
|
grammar = "toml"
|
|
path_suffixes = ["Cargo.lock", "toml", "Pipfile", "uv.lock"]
|
|
line_comments = ["# "]
|
|
autoclose_before = ",]}"
|
|
brackets = [
|
|
{ start = "{", end = "}", close = true, newline = true },
|
|
{ start = "[", end = "]", close = true, newline = true },
|
|
{ start = "\"", end = "\"", close = true, newline = false, not_in = ["comment", "string"] },
|
|
{ start = "'", end = "'", close = true, newline = false, not_in = ["comment", "string"] },
|
|
]
|