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.

14 wiersze
579B

  1. 'f' puts the contents of your previous cursor movement into
  2. FBUF. If that movement was a forward movement, it brings the
  3. cursor back where it was. This allows for an efficient combi-
  4. nation of movements and 'E'. For example, if you want to delete
  5. the next word, you type 'w', then 'f', then check your FBUF to
  6. be sure, then press 'E'.
  7. 'R' goes into replace mode at current cursor position.
  8. Following keystrokes replace current character and advance
  9. cursor. Press return to return to normal mode.
  10. '@' re-reads current block even if it's dirty, thus undoing
  11. recent changes.