Skip to content
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

Unmatched open parenthese characters in strings prevent symbols below from being registered #163

Open
davidmashburn opened this issue Apr 25, 2017 · 2 comments

Comments

@davidmashburn
Copy link

davidmashburn commented Apr 25, 2017

It seems that unmatched open parentheses characters "(" in strings prevent further symbols from being registered.

Examples without the issue:
a = 'x'
b = 'y'
--> a and b are identified

a = '()'
b = 1
-->a and b are identified

Examples with the issue:
a = '('
b = 1
--> only a is identified

a = '(')'
b = 1
--> only a is identified

This may be a problem with the language-python package, but this is where the issue presents itself for me.

Other example strings:

"'" --> no issue
"(" --> issue
"'('" --> issue
"(')" --> issue
"('x')" --> no issue
"('x'())" --> no issue
"('x'()(" --> issue
'a(\'\')' --> issue
'a(\')' --> issue
'a(\')' --> issue
'a()' --> no issue
@davidmashburn
Copy link
Author

BTW, this extension is awesome and is what convinced me to try Atom as my main editor. Thanks for all the good work!

@nicolashainaux
Copy link

Hello, can you tell what OS do you use? I cannot reproduce the issue (Linux Manjaro).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants