0
Fixed
Erlang syntax highlighting broken if a comment appears in the file.
Erlang comments being with a % character on a line. After the first comment line in a file, all subsequent lines have the comment color, even if they are not comments. For example:
% This is a comment
my_function() ->
X = 25,
X.
Put this in a file and try it with and without the comment line to observe the behavior I described above.
% This is a comment
my_function() ->
X = 25,
X.
Put this in a file and try it with and without the comment line to observe the behavior I described above.
Customer support service by UserEcho
For some reason, the syntax definition file also had "%" as the start character of a multiline comment. I've removed that.