Home

Awesome

KJump

<!-- Plugin description -->

A simplify plugin ported from vim-EasyMotion plugin for Intellij Platform IDE. Can be integrated with IdeaVim. Support character, word, line jump.

Usage

There are no default activated shortcuts. You can assign KJump activation shortcuts in Settings->Keymap->KJump menu, such as <c-,> <c-;> etc, or integrate with IdeaVim by add below section in ~/.ideavimrc:

nmap <leader><leader>s :action KJumpAction<cr>
nmap <leader><leader>w :action KJumpAction.Word0<cr>
nmap <leader><leader>l :action KJumpAction.Line<cr>
// more action see table below
NameActionDesc
KJumpKJumpActionInput 1 character and jump to any same character.
KJump Char 2KJumpAction.Char2Input 2 character and jump to any same character.
KJump Word 0KJumpAction.Word0Jump to any word.
KJump Word 1KJumpAction.Word1Input 1 character and jump to any word start with this character.
KJump LineKJumpAction.LineJump to any line.
<!-- Plugin description end -->