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