cdibbs / language-jison

Jison syntax definition for the Atom editor and Github linguist.
MIT License
6 stars 2 forks source link

Fix deprecated selectors #1

Closed dfreeman closed 7 years ago

dfreeman commented 7 years ago

Atom is dropping their usage of shadow DOM and instead switching to a syntax-- prefix for syntax highlighting selectors:

Starting from Atom v1.13.0, the contents of atom-text-editor elements are no longer encapsulated within a shadow DOM boundary. This means you should stop using :host and ::shadow pseudo-selectors, and prepend all your syntax selectors with syntax--.

This change switches to use what Atom is currently automatically transforming the selectors to under the covers.

cdibbs commented 7 years ago

Thanks, @dfreeman!