easymotion / vim-easymotion

Vim motions on speed!
http://www.vim.org/scripts/script.php?script_id=3526
7.44k stars 357 forks source link

the plugin doesn't work well with cmdheight = 0 #490

Open tropical32 opened 1 year ago

tropical32 commented 1 year ago

Using this command to set the height of the command line to 0 vim.o.ch = 0 in neovim it asks to confirm the selected key by opening a buffer at the bottom and demanding to press ENTER.

Target key:
Press ENTER or type command to continue

I tried to use silent to silence it but to no avail.

nmap <silent>s <Plug>(easymotion-overwin-f2)

\<cr> causes the macro to not run at all (returns early).

nmap s <Plug>(easymotion-overwin-f2)<cr>
kuangliu commented 1 year ago

@dydokamil You can try my fork: https://github.com/kuangliu/vim-easymotion

BingCoke commented 1 year ago

Now I get it.i get same bug and fight with it 1 hour...

hellomoto177 commented 1 year ago

The same :(

userrand commented 1 year ago

I had the issue with confirmation although maybe not for the same the reason and the code below found on this thread https://github.com/easymotion/vim-easymotion/issues/311 removed the message

let g:EasyMotion_verbose = 0