1 #include <stdio.h>
2 int main(int argc, char* argv[]) {
3 int i=10;
4 /* } */
5 return 0;
6 }
If the cursor is on line 2 under {
and I press the % key, the cursor shows
the matching closing brace on line 4 (which is commented out) and not the matching
closing brace on line 6.
Is there any workaround for this?