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
On v. 0.12 the editor cut the struct keyword into stru and ct, concatenated with the next word.
It still works if we replace the end keyword of my examples by anything.
It doesn't work if it's the first or the last token (nothing else than blank before or after), and in some other cases like on my third example.
Press Enter in the place of the symbol Ø:
moduleMod=structØ end
moduleMod=
stru
ctend
Press the spacebar selecting the newline after struct:
moduleMod=struct¶
end
moduleMod=
stru ctend
In this configuration the bug doesn't occur:
letf=function|[] -> structend|a::b -> g
The text was updated successfully, but these errors were encountered:
Looks like the automatic reindentation taking place at the wrong time, and messing up the cursor position before the character is inserted. It might be a bug in the indentation code or in Ace itself.
On v. 0.12 the editor cut the
struct
keyword intostru
andct
, concatenated with the next word.It still works if we replace the
end
keyword of my examples by anything.It doesn't work if it's the first or the last token (nothing else than blank before or after), and in some other cases like on my third example.
Ø
:struct
:The text was updated successfully, but these errors were encountered: