vim-easymotion icon indicating copy to clipboard operation
vim-easymotion copied to clipboard

Vim motions on speed!

Results 124 vim-easymotion issues
Sort by recently updated
recently updated
newest added

Using matchaddpos on each position individually has a lot of overhead, which causes vim to lag while it's highlighting too many targets. I've written two alternatives: - The first one...

Sometimes, easymotion's single character search doesn't highlight all matches. For example, in the screenshot below i searched for `e` and you can see a lot of them going unmarked (e.g....

Please, look screenshot: ![vim-same-marks](https://user-images.githubusercontent.com/548475/73428331-f0368580-4349-11ea-9045-9dd4fb89ce08.jpg) In .vimrc default settings for vim-easymotion (find by key 'easymotion') [.vimrc](https://gist.github.com/adminoid/876f46895aa437619f6a7120776e6903)

The 'fn' motion works fine, but the 'Fn' motion seems to be broken. For some reason it moves the cursor to a different location when searching: If I'm for example...

There are t and T motions that take us to the character before the search, and there is an search-n motion. Is there a search-n motion that takes one character...

I love easymotion. I want to use it everywhere :) and I sometimes `gt` and `gT` a lot, which is too bad.. Is there an option to navigate to another...

We can improve the target character combos using the following logic: * The nearest words to have single character target keys. (Already there) * Then it will have 2-character targets...

any words that searched, it displays the mapping for only the first search letter. [Imgur](https://i.imgur.com/4B6HPCd.jpg)

Alternating left and right press? ``` let g:EasyMotion_Left_keys = 'asdf' let g:EasyMotion_Right_keys = 'hjkl' ```

in the easymotion.txt file, function! s:incsearch_config(...) abort is missing a "}" and should read "({'overwin': 1 } )]," at end of second line. it also doesn't match strings in other...