Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Syntax highlighting problem #28

Open
charpov opened this issue Nov 6, 2014 · 1 comment
Open

Syntax highlighting problem #28

charpov opened this issue Nov 6, 2014 · 1 comment

Comments

@charpov
Copy link

charpov commented Nov 6, 2014

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).

@McPringle
Copy link
Contributor

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;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants