Mirror of CollapseOS
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

16 lines
506B

  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.)