Quantcast
Viewing all articles
Browse latest Browse all 5712

新米のvimtutor勉強メモ

  • normal modeでのcursor移動

    • k 上
    • j 下
    • h 左
    • l 右
  • insert modeとnormal modeの切り替え

    • insert->normal : キーesc
    • normal->insert : キーi
    • normal->insert : キーa
    • normal->insert : キーA (行末にcursorが移動)
  • 保存なしで、vim閉じる:normal modeで :q!

  • 文字削除

    • 一文字(削除後、normal modeまま):normal modeでキーx
    • 一文字(削除後、insert modeまま):normal modeでキーs
    • 一単語(削除後、normal modeまま):normal modeでキーdw (delete word)
    • 一単語(削除後、insert modeまま):normal modeでキーcw (change word)

Viewing all articles
Browse latest Browse all 5712

Trending Articles