-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TextMate scope selectors: child combinator is not implemented #123
Comments
It isn't mentioned explicitly, but I imagine it was intentionally left out in the same way the negation operator was. Which is a shame since both of them can be really useful.
from https://code.visualstudio.com/blogs/2017/02/08/syntax-highlighting-optimizations#_parent-selectors |
@jeff-hykin AFAIK However, with TextMate 2.0, it appears that they appear in the scope selector grammar at https://macromates.com/textmate/manual/references#scope-selector |
@alexdima To be honest i found out about this selector quite recently, but the changelog says it was introduced in 2012. |
I'd sure make use of it if it was documented and supported. Besides the changelog, there's really no documentation about it. |
Atom's |
I've implemented this feature in #233 |
Selectors such as
"scope1 > scope2"
aren't working.Expected behavior:
it should select all
scope2
elements that are the direct children ofscope1
The text was updated successfully, but these errors were encountered: