java.tmbundle
java.tmbundle copied to clipboard
Syntax highlighting problem
This code:
throw new Ex
("msg: ("+ x + ")");
int var = allMessedUp;
is not properly highlighted (all the code after the throw statement is the color of string literals).
Your coding style breaks multiple syntax highlighters. For example the GitHub syntax highlighter:
throw new Ex
("msg: ("+ x + ")");
int var = allMessedUp;
I suggest you to consider rethinking your coding style for better readability and less syntax highlighter problems. For example:
throw new Ex("msg: ("+ x + ")");
int var = allMessedUp;