Put the cursor next to any bracket [ ( {
Hit Ctrl+M
It will jump to the matching bracket...
It's a great way to see if you missed a } when you have a dozen nested IFs, WHILES and FORs.
The easy way is to put it at the last } in each section [if ($action)] and then hit Ctrl+M.
if it doesn't go to the beginning, something's screwed. Then you can use it to narrow down where it's missing pretty quickly.
I can find a missing bracket and fix it in a couple minutes now, rather than the unreliable looking over it manually for half an hour, missing it a dozen times, commenting every bracket pair so you can match them up...
Only to discover you have a line like this
if ($condition) { dosomething;
With no closing }... cuz it's just one statement after an IF, right?
It also helps with nested ( ) for IF statements as well...
|