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

the plugin doesn't work well with cmdheight = 0

Open tropical32 opened this issue 3 years ago • 4 comments

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>

tropical32 avatar Oct 05 '22 14:10 tropical32

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

kuangliu avatar Oct 13 '22 07:10 kuangliu

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

BingCoke avatar Nov 08 '22 16:11 BingCoke

The same :(

hellomoto177 avatar Nov 28 '22 18:11 hellomoto177

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

userrand avatar Sep 06 '23 20:09 userrand