Improve <Space> expression

This commit is contained in:
haya14busa 2014-02-26 10:44:52 +09:00
parent 5489d38337
commit 412699d466

View File

@ -958,7 +958,7 @@ function! s:PromptUser(groups) "{{{
" Jump first target when Enter or Space key is pressed "{{{
if (char ==# "\<CR>" && g:EasyMotion_enter_jump_first == 1) ||
\ (char ==# " " && g:EasyMotion_space_jump_first == 1)
\ (char ==# "\<Space>" && g:EasyMotion_space_jump_first == 1)
" NOTE: matchstr() is multibyte aware.
let char = matchstr(g:EasyMotion_keys, '^.')
endif "}}}