All Projects β†’ AlexPl292 β†’ Ideavim Easymotion

AlexPl292 / Ideavim Easymotion

Licence: gpl-3.0
EasyMotion emulation plugin for IdeaVim

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to Ideavim Easymotion

Runconfigurationasaction
Provides a way to use IntelliJ run configurations as buttons
Stars: ✭ 17 (-85.95%)
Mutual labels:  jetbrains
Multihighlight
Jetbrains IDE plugin: highlight identifiers with custom colors πŸ–ŒπŸ’‘
Stars: ✭ 65 (-46.28%)
Mutual labels:  jetbrains
Resharper Cyclomatic Complexity
ReSharper plugin to measure cyclomatic complexity as you type
Stars: ✭ 107 (-11.57%)
Mutual labels:  jetbrains
Intellij Sdk Docs
IntelliJ SDK Platform Documentation
Stars: ✭ 913 (+654.55%)
Mutual labels:  jetbrains
Intellijpywal
Intellij Pywal integration
Stars: ✭ 51 (-57.85%)
Mutual labels:  jetbrains
A File Icon Idea
Atom File Icons plugin for IntelliJ IDEA products
Stars: ✭ 90 (-25.62%)
Mutual labels:  jetbrains
Lucario
The best flat theme for Vim, Atom, Sublime Text, Jetbrains Editors, Terminal.app, iTerm, Xcode and XTerm
Stars: ✭ 711 (+487.6%)
Mutual labels:  jetbrains
Youtracksharp
.NET Standard 2.0 Library to access YouTrack API.
Stars: ✭ 115 (-4.96%)
Mutual labels:  jetbrains
Jetbrains Legacy
😱 A dark theme for the different JetBrains IDEs such as PhpStorm, RubyMine, etc.
Stars: ✭ 61 (-49.59%)
Mutual labels:  jetbrains
Intellij Elixir
Elixir plugin for JetBrain's IntelliJ Platform (including Rubymine)
Stars: ✭ 1,488 (+1129.75%)
Mutual labels:  jetbrains
Resharper Unity
Unity support for both ReSharper and Rider
Stars: ✭ 953 (+687.6%)
Mutual labels:  jetbrains
Actor Zeta
Library that provides an actor style message-passing programming model (in C++).
Stars: ✭ 34 (-71.9%)
Mutual labels:  jetbrains
Resharper Nuget
Plugin for ReSharper to support NuGet references correctly
Stars: ✭ 93 (-23.14%)
Mutual labels:  jetbrains
Docker Youtrack
Dockerfile for YouTrack.
Stars: ✭ 11 (-90.91%)
Mutual labels:  jetbrains
Jb Rpd Splash
Generate artwork for JetBrains products using RPD
Stars: ✭ 110 (-9.09%)
Mutual labels:  jetbrains
Idea Php Symfony2 Plugin
IntelliJ IDEA / PhpStorm Symfony Plugin
Stars: ✭ 797 (+558.68%)
Mutual labels:  jetbrains
Webstorm License Key
Instruction how use license key for WebStorm & all JetBrains products
Stars: ✭ 85 (-29.75%)
Mutual labels:  jetbrains
Pydantic Pycharm Plugin
PyCharm plugin for pydantic. This plugin provides autocompletion, inspection, type-checking, inserting unfilled argument, and more.
Stars: ✭ 116 (-4.13%)
Mutual labels:  jetbrains
Poetry Pycharm Plugin
A PyCharm plugin for poetry
Stars: ✭ 113 (-6.61%)
Mutual labels:  jetbrains
Gradle Changelog Plugin
Plugin for parsing and managing the Changelog in a "keep a changelog" style.
Stars: ✭ 102 (-15.7%)
Mutual labels:  jetbrains

IdeaVim-EasyMotion

Created for IdeaVim
Powered by AceJump

EasyMotion plugin emulation for IdeaVim.

Setup

How does it work?

Please check the docs of the vim-easymotion plugin.

Keep in mind that labels should be typed in lower case.

What are the features of this new plugin and how does this plugin differ from AceJump?

  • With IdeaVim-EasyMotion, you get good integration with IdeaVim.
    • Now you can use EasyMotion commands as an argument for d, c, or any other command that takes motion as an argument.
    • Use your existing EasyMotion mappings or create new mappings that will work both in Vim and IdeaVim.
    • If you use the iskeyword option, check out the <Plug>(easymotion-iskeyword-*) commands.
  • There is now an additional set of commands. Use <Plug>(easymotion-e) to jump to a word and, or <Plug>(easymotion-sl) for jumping within the line. See the full list of supported commands.

Keep typing

You don’t have to limit yourself to using only one char of the target word. Type as many chars as you need.

AceJump mapping

For it to work properly, the mappings of IdeaVim-EasyMotion should be executed instead of AceJump mappings. This plugin maps the shortcuts of AceJump to the corresponding actions in IdeaVim-EasyMotion to improve the experience of AceJump users. You can disable this feature by adding let g:EasyMotion_override_acejump = 0 to your ~/.ideavimrc.

An additional feature of this plugin: AceJump jumps will be added to IdeaVim jump list (no need for set easymotion).

mapleader mapping

If you want to change your leader key, please make sure the mapleader command appears before the set easymotion command in your ~/.ideavimrc:

let mapleader=","
set easymotion

Supported options:

  • g:EasyMotion_re_anywhere - Regex for <Plug>(easymotion-jumptoanywhere).
  • g:EasyMotion_re_line_anywhere - Regex for <Plug>(easymotion-lineanywhere).
  • g:EasyMotion_do_mapping - Set this option to 0 if you want to disable the default mappings.
  • g:EasyMotion_startofline - The default behavior of the |j| and |k| is to move your cursor to the start of the line. Set this option to 0 to force the cursor to stay in the same column.

Supported commands:

80 of the original 87 vim-easymotion commands are supported.
Here you can get the description of each <Plug> command.

  • <ll> means that you have to prefix the command with <leader><leader>. So, type <leader><leader>w to execute <ll>w command.
  • The default <leader> key is \. Use \\w to perform word motion if you don't have any overrides.
  • You can change the default prefix using mapping to <Plug>(easymotion-prefix). E.g. use map <Leader> <Plug>(easymotion-prefix) to change the prefix to a single leader - \w.

   Default Mapping |  <Plug> command       |
   -----------------------------------------------------------------
    <ll>f{char}    |  <Plug>(easymotion-f) |  mapped to fn
    <ll>F{char}    |  <Plug>(easymotion-F) |  mapped to Fn
    <ll>t{char}    |  <Plug>(easymotion-t) |  mapped to tn
    <ll>T{char}    |  <Plug>(easymotion-T) |  mapped to Tn

    <ll>w          |  <Plug>(easymotion-w) |
    <ll>W          |  <Plug>(easymotion-W) |
    <ll>b          |  <Plug>(easymotion-b) |
    <ll>B          |  <Plug>(easymotion-B) |
    <ll>e          |  <Plug>(easymotion-e) |
    <ll>E          |  <Plug>(easymotion-E) |
    <ll>ge         |  <Plug>(easymotion-ge |
    <ll>gE         |  <Plug>(easymotion-gE |
    <ll>j          |  <Plug>(easymotion-j) |
    <ll>k          |  <Plug>(easymotion-k) |
    <ll>n          |  <Plug>(easymotion-n) |
    <ll>N          |  <Plug>(easymotion-N) |
    <ll>s          |  <Plug>(easymotion-s) |  mapped to sn


    More <Plug> Mapping Table         |  Note
    ----------------------------------|----------------------
    <Plug>(easymotion-bd-f)           |
    <Plug>(easymotion-bd-t)           |  mapped to bd-tn
    <Plug>(easymotion-bd-w)           |
    <Plug>(easymotion-bd-W)           |
    <Plug>(easymotion-bd-e)           |
    <Plug>(easymotion-bd-E)           |
    <Plug>(easymotion-bd-jk)          |
    <Plug>(easymotion-bd-n)           |
    <Plug>(easymotion-jumptoanywhere) |

    <Plug>(easymotion-repeat)         |  UNSUPPORTED
    <Plug>(easymotion-next)           |  UNSUPPORTED
    <Plug>(easymotion-prev)           |  UNSUPPORTED

    <Plug>(easymotion-sol-j)          |
    <Plug>(easymotion-sol-k)          |
    <Plug>(easymotion-eol-j)          |
    <Plug>(easymotion-eol-k)          |
    <Plug>(easymotion-iskeyword-w)    |
    <Plug>(easymotion-iskeyword-b)    |
    <Plug>(easymotion-iskeyword-bd-w) |
    <Plug>(easymotion-iskeyword-e)    |
    <Plug>(easymotion-iskeyword-ge)   |
    <Plug>(easymotion-iskeyword-bd-e) |
    <Plug>(easymotion-vim-n)          |
    <Plug>(easymotion-vim-N)          |

    Within Line Motion                | Note 
    ----------------------------------|---------------------------------
    <Plug>(easymotion-sl)             |  mapped to sln
    <Plug>(easymotion-fl)             |  mapped to fln
    <Plug>(easymotion-Fl)             |  mapped to Fln
    <Plug>(easymotion-bd-fl)          |  mapped to sln
    <Plug>(easymotion-tl)             |  mapped to tln
    <Plug>(easymotion-Tl)             |  mapped to Tln
    <Plug>(easymotion-bd-tl)          |  mapped to bd-tln

    <Plug>(easymotion-wl)             | 
    <Plug>(easymotion-bl)             | 
    <Plug>(easymotion-bd-wl)          | 
    <Plug>(easymotion-el)             | 
    <Plug>(easymotion-gel)            | 
    <Plug>(easymotion-bd-el)          | 
    <Plug>(easymotion-lineforward)    |
    <Plug>(easymotion-linebackward)   |
    <Plug>(easymotion-lineanywhere)   |
                                      
    Multi Input Find Motion           | Note
    ----------------------------------|---------------------------------
    <Plug>(easymotion-s2)             |  mapped to sn
    <Plug>(easymotion-f2)             |  mapped to fn
    <Plug>(easymotion-F2)             |  mapped to Fn
    <Plug>(easymotion-bd-f2)          |  mapped to sn
    <Plug>(easymotion-t2)             |  mapped to tn
    <Plug>(easymotion-T2)             |  mapped to Tn
    <Plug>(easymotion-bd-t2)          |  mapped to bd-tn
                                      |
    <Plug>(easymotion-sl2)            |  mapped to sln
    <Plug>(easymotion-fl2)            |  mapped to fln
    <Plug>(easymotion-Fl2)            |  mapped to Fln
    <Plug>(easymotion-tl2)            |  mapped to tln
    <Plug>(easymotion-Tl2)            |  mapped to Tl2
                                      |
    <Plug>(easymotion-sn)             | 
    <Plug>(easymotion-fn)             | 
    <Plug>(easymotion-Fn)             | 
    <Plug>(easymotion-bd-fn)          | 
    <Plug>(easymotion-tn)             | 
    <Plug>(easymotion-Tn)             | 
    <Plug>(easymotion-bd-tn)          | 
                                      |
    <Plug>(easymotion-sln)            | 
    <Plug>(easymotion-fln)            | 
    <Plug>(easymotion-Fln)            | 
    <Plug>(easymotion-bd-fln)         | 
    <Plug>(easymotion-tln)            | 
    <Plug>(easymotion-Tln)            | 
    <Plug>(easymotion-bd-tln)         | 

    Over Window Motion                | Note
    ----------------------------------|---------------------------------
    <Plug>(easymotion-overwin-f)      | UNSUPPORTED
    <Plug>(easymotion-overwin-f2)     | UNSUPPORTED
    <Plug>(easymotion-overwin-line)   | UNSUPPORTED
    <Plug>(easymotion-overwin-w)      | UNSUPPORTED


    Doesn't exist in EasyMotion       | Description
    ----------------------------------|----------------------------------
    <Plug>(acejump-linemarks)         | Analog of Line Motion in AceJump
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].