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

Vim: インサートモードで行の途中からでも次の行に新規挿入する方法 ~ 初心者 ~

Last updated at Posted at 2020-03-26

Vim: インサートモードで行の途中からでも次の行に新規挿入する方法 ~ 0から始めるvim ~

SublimeTextやAtomのCommand+Enterが便利だったので,
Vimのインサートモードでもやってみたというお話です。

デフォルトだと次のようなコマンドがあります。

インサートモード
<C-o>o

ただ毎回プリフィックスキーを打つのが面倒だったので,
次のようにキーバインドを変更したら快適でした。

.vimrc
inoremap <C-o> <C-o>o

左側の<C-o> の部分は自由に変更することができます。
私はいつも Ctrl+o でやっていたので,このような設定にしてみました。

注意

インサートモードのプリフィックスキー <C-o>には一度だけノーマルモードのコマンドを入力できる
という意味もあるので,もしいつも他の操作でプリフィックスキーをいつも使用しているのであれば,
他のキーに変更するかそのまま使用することをお勧めします。

2
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
2
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?