We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This issue actually has two parts to it.
First, a stray single parenthesis in a string literal will break extension.selectParenthesis command.
Observe the following code
method("test blah ("+foo+" blah");
If I put my caret anywhere in the outer parenthesis, the command extension.selectParenthesis does nothing.
Secondly, it is my personal subjective preference that parenthesis inside of string literals be ignored by the selectParenthesis command.
So placing my caret anywhere in the following code, and executing selectParenthesis command, will select everything within the outer parenthesis...
method(" here is some (text)"+textVar);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This issue actually has two parts to it.
First, a stray single parenthesis in a string literal will break extension.selectParenthesis command.
Observe the following code
method("test blah ("+foo+" blah");
If I put my caret anywhere in the outer parenthesis, the command extension.selectParenthesis does nothing.
Secondly, it is my personal subjective preference that parenthesis inside of string literals be ignored by the selectParenthesis command.
So placing my caret anywhere in the following code, and executing selectParenthesis command, will select everything within the outer parenthesis...
method(" here is some (text)"+textVar);
The text was updated successfully, but these errors were encountered: