-
Notifications
You must be signed in to change notification settings - Fork 373
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
Doesn't work with Python f-strings #211
Comments
Same here, but it does work with double quotes. |
|
This almost works perfectly, except for if your string ends in an f, and you try to close the string it will add another apostrophe to close that one. |
Weird. Does anybody have any idea why it works for double but not single quotes? Maybe this could be used to fix the issue. |
I think this is intended behavior.
One of the features of this plugin is to NOT complete apostrophes while inside a word. Hence, double quotes are not affected |
Python f-strings have the following syntax:
When typing
f'
, I would expect the closing'
character to be auto-paired, but it currently does not.The text was updated successfully, but these errors were encountered: