Programming and posix - April 2002

April 3, 2002
Solution Symposium
Page 12
hp e3000
programming
and posix
vi command quick reference
a - append to the right of cursor (data entry mode)
i - insert to the left of cursor (data entry mode)
o - add a new line below cursor (data entry mode)
O - add a new line above cursor (data entry mode)
dd - delete the current line
x - delete the current character
r - replace current character with next typed character
cw - change current word (data entry mode)
dw - delete current word
. - repeat last modification command