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
In fsi files, the F# compiler allows declarations like these:
val pair : 'a -> 'b -> 'a * 'b
val fst : 'a * 'b -> 'a
However, in Ionide VSCode, such declarations mess up the syntax highlighting for ensuing lines (see Broken.fsi in attached project). The highlighting can be fixed by enclosing tuple types in parentheses (as in Fixed.fsi), but it would be nice if the highlighting handled the unparenthesized cases. SynHighlightExamples.zip
The text was updated successfully, but these errors were encountered:
In fsi files, the F# compiler allows declarations like these:
However, in Ionide VSCode, such declarations mess up the syntax highlighting for ensuing lines (see Broken.fsi in attached project). The highlighting can be fixed by enclosing tuple types in parentheses (as in Fixed.fsi), but it would be nice if the highlighting handled the unparenthesized cases.
SynHighlightExamples.zip
The text was updated successfully, but these errors were encountered: