LoginSignup
3
3

More than 5 years have passed since last update.

vimの練習帳 その1

Posted at

vimの練習帳 その1

vimのTIPSは、知った時は「なるほど〜便利だな」と思うのですがしばらく使わないと忘れちゃいます。
というわけで、「10分くらいで、TIPSをまとめて復習できる練習が作れないかな」と考えました。
こういうのって、何て呼べばいいんですかねぇ。バイエルじゃないしなぁ。


.vimrcなしで起動

vim -u NONE -N

:e test.txt

準備

ione two three four five<C-[>

移動基本

0wwwwbbbbeeeegegegege

ピリオドで繰り返しその1

0~w.w.w.w.

ピリオドで繰り返しその2

0ea_hoge<C-]>e.e.e.e.

fの繰り返し、前後ろ

0f_;;;;,,,,

削除 to

0dt_u

削除 f

0df_u

基本のdaw

$dawu

基本のciw

$ciwhoge<C-]>u

ピリオドで繰り返しその3

0f_s<C-]> of ;.;.;.;

置換

:s/hoge/dog/

置換繰り返し

&&&&

検索

0fd*nnnNNN

検索後cとn.で置換繰り返し

cwcat<C-[>n.n.

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