Using PhpStorm IdeaVim, I can't use shift+arrow keys to select words

后端 未结 8 849
有刺的猬
有刺的猬 2021-01-30 13:11

I am using PhpStorm 7.1.2 with IdeaVim plugin.

When in Insert mode, I want to select words using Shift + ArrowKey. However, this IdeaVim plugin seems to be

8条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-30 13:48

    create ~/.ideavimrc file with the following lines

    nnoremap  :action EditorLeftWithSelection
    nnoremap  :action EditorRightWithSelection
    nnoremap  :action EditorUpWithSelection
    nnoremap  :action EditorDownWithSelection
    
    inoremap  :action EditorLeftWithSelection
    inoremap  :action EditorRightWithSelection
    inoremap  :action EditorUpWithSelection
    inoremap  :action EditorDownWithSelection
    

提交回复
热议问题