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:
parent
843919dd14
commit
a827d0dac6
3 changed files with 3 additions and 3 deletions
|
@ -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 },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue