diff --git a/autoload/EasyMotion.vim b/autoload/EasyMotion.vim index 1895dd7..2887ff9 100644 --- a/autoload/EasyMotion.vim +++ b/autoload/EasyMotion.vim @@ -958,7 +958,7 @@ function! s:PromptUser(groups) "{{{ " Jump first target when Enter or Space key is pressed "{{{ if (char ==# "\" && g:EasyMotion_enter_jump_first == 1) || - \ (char ==# " " && g:EasyMotion_space_jump_first == 1) + \ (char ==# "\" && g:EasyMotion_space_jump_first == 1) " NOTE: matchstr() is multibyte aware. let char = matchstr(g:EasyMotion_keys, '^.') endif "}}}