Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
507B

  1. 'h' and 'l' move the cursor by "modifier" characters. 'j' and
  2. 'k', by lines.
  3. 'H' goes to the beginning of the line, 'L' to the end.
  4. 'w' moves forward by "modifier" words. 'b' moves backward.
  5. 'W' moves to end-of-word. 'B', backwards.
  6. 'I', 'F', 'Y', 'X' and 'E' invoke the corresponding command
  7. 'o' inserts a blank line after the cursor. 'O', before.
  8. 'D' deletes "modifier" lines at the cursor. The first of those
  9. lines is copied to IBUF.
  10. (cont.)