<!-- Have you read Atom's Code of Conduct? By filing an Issue, you are expected to comply with it, including treating everyone with respect: https://github.com/atom/.github/blob/master/CODE_OF_CONDUCT.md Do you want to ask a question? Are you looking for support? The Atom message board is the best place for getting support: https://discuss.atom.io --> ### Prerequisites * [x] Put an X between the brackets on this line if you have done all of the following: * Reproduced the problem in Safe Mode: <https://flight-manual.atom.io/hacking-atom/sections/debugging/#using-safe-mode> (I have not - but this shouldn't be relevant. Also see below) * Followed all applicable steps in the debugging guide: <https://flight-manual.atom.io/hacking-atom/sections/debugging/> * Checked the FAQs on the message board for common solutions: <https://discuss.atom.io/c/faq> * Checked that your issue isn't already filed: <https://github.com/issues?utf8=✓&q=is%3Aissue+user%3Aatom> * Checked that there is not already an Atom package that provides the described functionality: <https://atom.io/packages> ### Description When using the `@link` doc tag to refer to a class, rather than a method (which is valid), it is not highlighted, however it is for a method. ### Steps to Reproduce 1. Open a Java file 2. Paste in the following Javadoc comment ```java /** * {@link String} * {@link String#toCharArray()} */ ```  Notice how only the latter has correct syntax highlighting. **Expected behavior:** Syntax highlighting should be applied to the @link tag when referring to a method or a class. **Actual behavior:** Syntax highlighting is only applied to the @link tag when referring to a method. **Reproduces how often:** Every time. ### Versions <!-- You can get this information from copy and pasting the output of `atom --version` and `apm --version` from the command line. Also, please include the OS and what version of the OS you're running. --> I'm using VSCode, however it apparently uses the Atom Java grammar upstream, so I'm reporting here. (See the below linked issue.) ### Additional Information See: https://github.com/redhat-developer/vscode-java/issues/1753
Prerequisites
Description
When using the
@linkdoc tag to refer to a class, rather than a method (which is valid), it is not highlighted, however it is for a method.Steps to Reproduce
Notice how only the latter has correct syntax highlighting.
Expected behavior:
Syntax highlighting should be applied to the @link tag when referring to a method or a class.
Actual behavior:
Syntax highlighting is only applied to the @link tag when referring to a method.
Reproduces how often:
Every time.
Versions
I'm using VSCode, however it apparently uses the Atom Java grammar upstream, so I'm reporting here. (See the below linked issue.)
Additional Information
See: redhat-developer/vscode-java#1753