golang: autoclose backticks (#12050)
Fixes #12025 Release Notes: - Fixed backtick characters not getting autoclosed in Golang files (#12025).
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user