Mirror of CollapseOS
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

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