atom / language-javascript

JavaScript language package for Atom
Other
194 stars 236 forks source link

Add JSDoc injection w/ tree-sitter-jsdoc #629

Closed maxbrunsfeld closed 6 years ago

maxbrunsfeld commented 6 years ago

Fixes #600

Rationale

When we introduced Tree-sitter, we removed the feature of syntax-highlighting JSDoc comments in JavaScript. This PR adds back JSDoc highlighting using a new Tree-sitter parser: tree-sitter-jsdoc.

screen shot 2018-11-14 at 3 30 38 pm

Possible Drawbacks

This adds many more injections in some JavaScript files, so it may affect performance. In the course of adding this, I already found and fixed two performance bottlenecks related to large numbers of language injections:

/cc @Ben3eeE