From 412699d466f9c0a2fe6351dd79aefc9abf6efab8 Mon Sep 17 00:00:00 2001 From: haya14busa Date: Wed, 26 Feb 2014 10:44:52 +0900 Subject: [PATCH] Improve expression --- autoload/EasyMotion.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "}}}