vim-easymotion
vim-easymotion copied to clipboard
Bug with easymotion-sn with g:EasyMotion_off_screen_search = 1
The off-screen-search doesn't seem to work properly as it outputs no matches even though it found a match - just off screen.
Like in the following example after typing in a search query where there is a match off screen. After pressing enter the editor jumps back to the original cursor location and not the found search term.
I can press easymotion-next afterwards to go to the search result but that is cumbersome

I've been wondering if there could be a way to chain these so that it implicitly fixes this behavior, but I don't know how to chain the mapping calls so they are treated as commands and not inputs to easymotion-sn:
" I've tried something like this but this jump pre-fills the search of `easymotion-sn`
map / <Plug>(easymotion-sn) <Plug>(easymotion-next) <Plug>(easymotion-prev)