Programming and posix - February 2001
February 10, 2001
Solution Symposium
Page 11
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