3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

viで編集するために必要な最低限覚えておくべき10のコマンド

Posted at

viで編集するために最低限覚えておくべきコマンドをまとめました。
この10のコマンドさえあればとりあえず編集できます。
→(いずれ)スマートに編集するために必要なあと10のコマンド

操作基礎

vi ファイル名
で起動

  • 起動時はコマンドモードで下記のコマンドが使える状態。
  • 入力コマンドを押すとINSERTモードに切り替わり、ファイルに加筆したり修正したりできる状態になる。
  • ふたたびコマンドモードに戻るためにはキーボードの「Esc」を押せば戻る。

移動コマンド

コマンド 説明
h
j
k
l

検索コマンド

コマンド 説明
/<文字列> 文字列 を検索する(「n」で次の検索結果にジャンプ)

入力コマンド

コマンド 説明
i カーソルの左から入力開始

行追加

コマンド 説明
o 現在の行の下に1行挿入、INSERTモードで入力開始

削除コマンド

コマンド 説明
x カーソル上の1文字削除

終了コマンド

コマンド 説明
:wq 保存して終了
:q! 保存せずに終了
3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?