java.tmbundle
java.tmbundle copied to clipboard
TextMate support for Java
The following block of code breaks syntax highlighting. As you can see, the rest of the file is gray. The source file is valid Java 8 (at least) syntax. ...
As I'm writing, its absence is also evident in GitHub syntax highlighting: ```java public interface Reader { int readInto(byte[] buf, int n); default int readInto(byte[] buf) { return readInto(buf, buf.length);...
Possibly as a consequence of the fix for #32, HTML tags in comment blocks will only have their open tags syntax-highlighted, not the corresponding close tags. See for example the...
Java `Properties` object serialization produces for `String' value `:` looks like this: ``` my.path=\: ``` Doesn't look like the language tokenizer/parser likes this. I get the following errors: ``` extraneous...
_From @david-russo on October 11, 2016 10:38_ - VSCode Version: 1.6.0 - OS Version: Windows 7 (64-bit) Steps to Reproduce: 1. Open a new file a select the Java language...
https://github.com/zg/pj2/blob/master/lib/edu/rit/util/DList.java I don't know what's wrong here, but at line 148, the syntax highlighter breaks and everything gets painted blue past that line.
This code: ``` throw new Ex ("msg: ("+ x + ")"); int var = allMessedUp; ``` is not properly highlighted (all the code after the throw statement is the color...
Constructors containing only upper-case letters, with no visibility keyword (i.e package visible) break highlighting of all methods below it. See: 
I do not have TextMate to reproduce this locally, but the grammar is also used by GitHub's syntax highlighting, right? In [this comment thread on Hacker News](https://news.ycombinator.com/item?id=12403013) I learned that...
There seems to be 2 issues with syntax highlighting. The first is an apostrophe in the JSP comments and the second is caused by an unknown reason. Comment Apostrophe: ![screen...