Mirror of CollapseOS
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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