I'm not sure what I'm doing that's hitting this deprecation warning, but I felt like it might be useful to report it:
In multi-cursor-plus\styles\multi-cursor-plus.less:
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--. To prevent breakage with existing style sheets, Atom will automatically upgrade the following selectors:
Automatic translation of selectors will be removed in a few release cycles to minimize startup time. Please, make sure to upgrade the above selectors as soon as possible.
I'm not sure what I'm doing that's hitting this deprecation warning, but I felt like it might be useful to report it:
In
multi-cursor-plus\styles\multi-cursor-plus.less
: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 withsyntax--
. To prevent breakage with existing style sheets, Atom will automatically upgrade the following selectors:atom-text-editor::shadow .cursors .cursor:not(:last-child)
=>atom-text-editor.editor .cursors .cursor:not(:last-child)
atom-text-editor::shadow .cursors:not(.blink-off) .cursor:not(:last-child)
=>atom-text-editor.editor .cursors:not(.blink-off) .cursor:not(:last-child)
atom-text-editor::shadow .cursors.blink-off .cursor:not(:last-child)
=>atom-text-editor.editor .cursors.blink-off .cursor:not(:last-child)
Automatic translation of selectors will be removed in a few release cycles to minimize startup time. Please, make sure to upgrade the above selectors as soon as possible.