-
-
Notifications
You must be signed in to change notification settings - Fork 107
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
Multiple string matching + wildcards failing #39
Comments
Have exactly the same issue here. 😭 |
Same issue too. Sublime build 3065 |
This is a problem with the Python core library not supporting nesting of special glob characters( The incomplete pull request for adding support is at editorconfig/editorconfig-core-py#5. I started adding support and got stuck and then busy. |
I just released v0.12.0 of the EditorConfig Python library which supports nested brace expansion and numeric ranges. @sindresorhus if you upgrade the Python library it will fix this issue. |
I have an
editorconfig
that tries to make use of the multiple-string matching to keep things simple, but also wildcards:This seems to work in the Visual Studio plugin but not in Sublime Text 3 (registered).
When I open a .html file and look in the Sublime console I see the dictionary of settings and it only includes the ones from the
[*]
match.However, if I change the file to:
Then my settings are correctly applied in both Sublime and Visual Studio.
Am I misusing the multi-string match function?
The text was updated successfully, but these errors were encountered: