0
0

More than 5 years have passed since last update.

XVim の insert mode をEmacs 風にする

Posted at

XVim は便利なんだけど、入力は Emacs の方が慣れているので C-e C-n C-p をEmacs風にマッピングする。

insert mode で C-o をするとワンアクションだけ normal mode になるらしいので、それを利用する。 というのは XVim の Github にも書いてあった。

inoremap <C-e> <C-o>$
inoremap <C-n> <C-o>j
inoremap <C-p> <C-o>k
0
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
0
0