13
18

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.

Vimについて

Last updated at Posted at 2017-08-28

ショートカット

ショートカット 効果
:set columns= xxx 横幅
:set lines= xxx 縦幅
0 先頭に移動
:Tutorial チュートリアル

編集、保存

ショートカット 効果
:e (Tabでファイルを選択)[file] fileを開く
:w 保存
:q 終了
:q! 保存せず終了
ZZ 保存して終了

移動系

ショートカット 効果
0 先頭に移動
ctrl + u 半画面分 上へ
ctrl + d 半画面分 下へ
dd 最下部
D 最上部
gg 先頭行に移動
G 先頭行に移動

モード変換

ショートカット 効果
i カーソル位置からインサートモードに入る
Ctrl-r 0(ゼロ)(インサートモード中に) レジスタ0に保存されている文字列を貼り付ける. 通常, yを使用してコピーした文字列は, レジスタ0に保存される。

コピー

yy カーソルがある行をコピー
x 削除
d$ 行を削除
dd 行を削除

検索

ショートカット 効果
dw カーソル位置から1単語分削除する
ノーマルモードで ? 続けて文字を打ち, Enterで文字列を確定し, 前方検索をかける
/ の後に語句をタイプで前方検索
? の後に語句をタイプで後方検索
/か?語句を入力後にn 同じ語句を検索

編集

ショートカット 効果
前回の動作を消す u
行全体の変更を取消す U
取り消しの取消し CTRL-R
編集する文字にカーソルを合わせる r
単語の一部を削除と変更 cw

参照サイト

用語解説

ビジュアルモード

ViとVimの大きな違いの1つに、Vimには「ビジュアルモード」と呼ぶテキスト選択機能があるということが挙げられる。ビジュアルモードではテキストを文字単位、行単位、矩形単位で選択し、選択したテキストに対してVimのコマンドを適用できる。

13
18
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
13
18

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?