You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With syntax = true in moerc.toml, a file that begins with the following lines will show with a blank first line:
proctest=procwtf)=
(note: proc test = is valid syntax for a void proc that takes no arguments)
There's no problem with these first lines:
proctest: void=proctest() =
You can also open a file that begins with a valid proc line and then edit it to make the line vanish -- deleting one of the parens in proc test() = is enough.
You can also reveal the first line by prepending a new line -- just O in command mode is enough.
NB: the problem isn't that the highlighting is broken, but that the line isn't displayed at all
This complete example:
proctest=echo"Hello, world!"
is displayed by moe as:
1
2 echo "Hello, world!"
3
The text was updated successfully, but these errors were encountered:
With
syntax = true
in moerc.toml, a file that begins with the following lines will show with a blank first line:(note:
proc test =
is valid syntax for a void proc that takes no arguments)There's no problem with these first lines:
You can also open a file that begins with a valid proc line and then edit it to make the line vanish -- deleting one of the parens in
proc test() =
is enough.You can also reveal the first line by prepending a new line -- just O in command mode is enough.
NB: the problem isn't that the highlighting is broken, but that the line isn't displayed at all
This complete example:
is displayed by moe as:
The text was updated successfully, but these errors were encountered: