We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7341286 commit 4c28becCopy full SHA for 4c28bec
2 files changed
src/de/halirutan/mathematica/lexer/Mathematica.flex
@@ -225,7 +225,7 @@ Out = "%"+
225
226
<IN_COMMENT> {
227
{CommentStart} { yypushstate(IN_COMMENT); return MathematicaElementTypes.COMMENT_START;}
228
- [^\(\*\):]* { return MathematicaElementTypes.COMMENT_CONTENT; }
+ [^\(\*\):]+ { return MathematicaElementTypes.COMMENT_CONTENT; }
229
"::"[A-Z][A-Za-z]*"::" {return MathematicaElementTypes.COMMENT_SECTION; }
230
":"[A-Z][A-Za-z ]*":" {return MathematicaElementTypes.COMMENT_ANNOTATION; }
231
{CommentEnd} { yypopstate(); return MathematicaElementTypes.COMMENT_END; }
0 commit comments