Operators used in combination with movement operators to operate over useful lumps of text
d | Delete | e.g. df, - delete to next comma, D delete to end of line, dd delete line |
c | Change | e.g. cw - Change word, C changes everything to end of line, cc change line |
y | Yank | Copies to cut buffer, (use p to get back), e.g. y% yank to matching bracket, Y yanks line |
! | filter | e.g. !}fmt<ret> reformats a paragraph |
> | indent | e.g.>'a - indent all lines up to the mark |
< | unindent | e.g.>'a - unindent all lines up to the mark |
The . repeats the last operator. Useful in combination with ; to repeat F/t motion commands
Copyright Dr. David Alan Gilbert 2001. vitalk @ treblig.org - Hacked together with dsh