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
There is a missing rule for the special token (*).
It is currently interpreted as an opening block comment (* without any matching *) by the ocaml language definition.
In a personal project, I fixed this kind of issue by adding a special rule in the syntax definition, explicitly adding token \\(\\*\\) to the list of operator matching rules :
There is a missing rule for the special token
(*)
.It is currently interpreted as an opening block comment
(*
without any matching*)
by the ocaml language definition.In a personal project, I fixed this kind of issue by adding a special rule in the syntax definition, explicitly adding token
\\(\\*\\)
to the list of operator matching rules :This made the trick for me, provided the operators rules are loaded before comments.
The text was updated successfully, but these errors were encountered: