mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
golang: autoclose backticks (#12050)
Fixes #12025 Release Notes: - Fixed backtick characters not getting autoclosed in Golang files (#12025).
This commit is contained in:
parent
ab7ce32888
commit
7db85b0d2e
@ -9,6 +9,7 @@ brackets = [
|
||||
{ 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"] },
|
||||
{ start = "`", end = "`", close = true, newline = false, not_in = ["comment", "string"] },
|
||||
{ start = "/*", end = " */", close = true, newline = false, not_in = ["comment", "string"] },
|
||||
]
|
||||
tab_size = 4
|
||||
|
Loading…
Reference in New Issue
Block a user