LoginSignup
0
0

More than 1 year has passed since last update.

IdeaVim の EasyMotion プラグインを導入したが symotion-bd-f) のような文字列が挿入される

Last updated at Posted at 2022-05-15

現象

例えば、 ~/.ideavimrc に以下の設定を加えているとする。

.ideavimrc
set easymotin
map f <Plug>(easymotion-bd-f)

f キーを押すと、画面に symotion-bd-f) が挿入され、インサートモードになる。
一体なぜ?

原因

set easymotion をタイポしている。
もしくは AceJumpEasyMotion のプラグインをインストールしていない。

解決策

set easymotion のタイポを修正する。

.ideavimrc
set easymotion
map <leader>f <Plug>(easymotion-bd-f)

もしくは AceJumpEasyMotion のプラグインをインストールする。

最後に

みなさんはこのようなつまらないミスで1時間ほどネットをさまよわないようにしましょう。

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