Often I see this.
foreach ($langs as $lang => $val){
if ($val === '') $langs[$lang] = 1;
}
This annoys me and often creates unnecessary horizontal scrolling, so I tend to fix it by removing the leading spaces. Resulting in that.
foreach ($langs as $lang => $val){
if ($val === '') $langs[$lang] = 1;
}
After doing it a lot, I got bored, as the only way is deleting the spaces manually, separately on each line.
I did check out this topic and gave this tool a shot, but it won't remove the annoying spaces.
May I therefore make a proposal:
When Ctrl+K Ctrl+Shift+K is pressed, check if certain number of spaces can be safely removed from the beginning of each line. If so, remove that (same) number of spaces from each line, resulting in the least-indented lines being exactly 4 spaces to the right.
Relative indentation is obviously not affected, so the code remains formatted as the author wanted it, but shifted to the left as a whole.
And may Ctrl+K retain its default behaviour, because there's Fortran 77 as dmckee noted.