Is there a way to move through list of suggestions without leaving keyboard home row? I am looking for some kind of vim-style analog to up/down arrow actions.
Press Ctrl+Alt+Shift+J to select all case-sensitively matching words or text ranges in the document.
Editing and Reloading the Config ideavimrc file. Once saved, it needs to be reloaded to apply the changes. The following defines two remaps: \e to open the file and \r to reload it. Moreover, the set clipboard command enables using the system clipboard from IdeaVim and vice-versa.
The IdeaVim plugin emulates Vim in the IntelliJ IDEA editor, including normal, insert, and visual modes, Command-line and Ex modes, Vim regexp and configuration, and other features.
you can use Ctrl
+ n
and Ctrl
+ p
to cycle the autocomplete options
Reference: https://youtrack.jetbrains.com/issue/VIM-438#comment=27-520874
You can bind Fn + hjkl to arrow keys globally in your OS. No more leaving the home row, ever! Fn is often located in the bottom left corner of the keyboard where you can easily reach it with your left palm.
On OS X you can remap the keys using excellent Karabiner software (formerly known as KeyRemap4MacBook) which has a "Vi mode" preset.
On Linux there are several solutions using xmodmap or XKB, see https://superuser.com/questions/96299/mapping-superhjkl-to-arrow-keys-under-x. You might need to substitute Fn for LCtrl: I'm not sure if Fn is visible to key remapping code at all.
Not sure if there are any options on Windows.
Also, certain high-end keyboards can remap keys in hardware as well.
On Windows, you can use AutoHotkey to remap Win+jk to DownUp
#j::Send {Down}
#k::Send {Up}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With