mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-05 18:25:57 +00:00
yaml: Add single quotes to list of brackets (#16859)
Closes #16854 Release Notes: - Single quotes are now auto-closable in YAML files
This commit is contained in:
parent
73bde398af
commit
afe4d8c8cc
1 changed files with 1 additions and 0 deletions
|
@ -7,6 +7,7 @@ brackets = [
|
|||
{ start = "{", end = "}", close = true, newline = true },
|
||||
{ start = "[", end = "]", close = true, newline = true },
|
||||
{ start = "\"", end = "\"", close = true, newline = false, not_in = ["string"] },
|
||||
{ start = "'", end = "'", close = true, newline = false, not_in = ["string"] },
|
||||
]
|
||||
|
||||
auto_indent_using_last_non_empty_line = false
|
||||
|
|
Loading…
Reference in a new issue