The _ (underscore) command is very similar to the
^ (caret) command in that it moves to the first
nonblank character of the current line. The key difference is that
_ is a line command while
^ is a character command.
This is important for all functions that read an
"address" -- for example,
d, y, and c.
In fact, delete, yank, and so on all call a common internal routine
in vi to get an
"address." If the address is of a
particular character, vi does a character-mode
delete or yank or whatever. If it is a line address,
vi does a line-mode operation. The
"address" command may be any of the
regular positioning commands (e.g., W,
b, $, or
/pattern/) or the original character repeated (as
in dd or yy).
vi combines the repeat count on the command
character with the repeat count on the motion command, so that
2y2j yanks five lines. Interestingly,
2y2_ yanks 4 lines (so does
2y2y) since the _ command moves
down (repeat count minus 1) lines. Beware, however, of using repeat
counts on all of the motion commands; they're not all implemented in
the same way. 4$ moves to the end of the third
line below the current; 4 merely moves to the
first nonblank character of the current line. |
(vertical bar) is a synonym for 0 (zero); given a
repeat count, it goes that many characters to the right of the
beginning of the line (as if you had typed |
(rept-1) l). (Exercise for
the reader: why can't you give a repeat count to
0?)