-
-
Notifications
You must be signed in to change notification settings - Fork 41
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
EAP matching rules do not work when space separated (comma separated works) #64
Comments
Looks to be this code in
|
try this |
Using EAP version of plugin w/ IntelliJ
In addition to #62 where files are not hidden in the Project view there is an issue when specifying multiple glob patterns.
Specifying them space-separated does not work; it results in the named group being empty (matching nothing). Specifying them comma-separated works (the group now contains all the matched files, though they are not hidden from the main Project view).
Does not work:
gradle* .* *.gradle.kts
Works:
gradle*,.*,*.gradle.kts
The UI indicates that spaces should be used:
Glob-like space-separated folding rules, like: README.md *.yml gradle*
The text was updated successfully, but these errors were encountered: