fixed zig config on line_comments (#6979)
On a .zig files , the `CMD-/` keybinding don't work, In the language config its the only language with '//' type comment that is written in singular without array. This fixed the problem, so i assume it was just a typo  Release notes: - Fixed line comment continuations and Editor::ToggleComments for Zig, Haskell and PureScript.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
name = "Haskell"
|
||||
path_suffixes = ["hs"]
|
||||
autoclose_before = ",=)}]"
|
||||
line_comment = "-- "
|
||||
line_comments = ["-- "]
|
||||
block_comment = ["{- ", " -}"]
|
||||
brackets = [
|
||||
{ start = "{", end = "}", close = true, newline = true },
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
name = "PureScript"
|
||||
path_suffixes = ["purs"]
|
||||
autoclose_before = ",=)}]"
|
||||
line_comment = "-- "
|
||||
line_comments = ["-- "]
|
||||
block_comment = ["{- ", " -}"]
|
||||
brackets = [
|
||||
{ start = "{", end = "}", close = true, newline = true },
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name = "Zig"
|
||||
path_suffixes = ["zig"]
|
||||
line_comment = "// "
|
||||
line_comments = ["// "]
|
||||
autoclose_before = ";:.,=}])>"
|
||||
brackets = [
|
||||
{ start = "{", end = "}", close = true, newline = true },
|
||||
|
||||
Reference in New Issue
Block a user