1
1

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 3 years have passed since last update.

Vimコマンド入門

Posted at

vi ファイル名編集可能になります。
もし、ファイルが存在しなかったら作成できます。

コマンド 用途
escキー 入力モード切り替え -- INSERT --になっているか確認
:w 保存する
:wq 保存して終了
:q 保存せずに終了
:q! 変更した内容を保存せずに終了
dd 一行削除
x 1文字削除
yy 一行コピー
p コピーを貼り付け
u 変更取り消し
g ファイル先頭へ移動
shiht + g ファイル末尾へ移動
j 下へ移動 [↓]
k 上へ移動 [↑]
h 左へ移動 [←]
i 右へ移動 [→]

|

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?