the “=” key is used to autoformat in Vim.
If I have this:
if ($args{h
}) {
&help
;
}
if ($args{q}) {
++$quiet_mode;
}
I can highlight the text using CTRL-V and h,j,k,l to and then use the “=” to get:
if ($args{h
}) {
&help
;
}
if ($args{q}) {
++$quiet_mode;
}
awesome. thank you, that is so slick. here i am playing with :set sw=3.