Mirror of CollapseOS
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

16 líneas
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.)