-
Notifications
You must be signed in to change notification settings - Fork 200
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
exclude curly braces for c and ts #517
Conversation
I tested with C and noticed two things.
|
in which scenario?
by "broken into semicolons" you mean for loops? for example in this case being inside if condition int main() {
for (int i = 0 ; i < 3; i++) {
printf("loop\n");
if (1) {
printf("Test condition\n");
break;
}
}
} selecting inside a loop seems to be a expected change no need to warn the users about it |
Yes, inside the for loop and also inside the if condition used to be selected. Also, if your cursor is on the curly brace opening or before, it will still select them. |
d01bf3c
to
4f8ee98
Compare
@kiyoon I think that's fixed now, can you take a another look? |
It works great on both C and TS. Thanks a lot for this! |
partially fixes #516