1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 22:30:04 +08:00

Fix <space> mapping in guide

This commit is contained in:
wsdjeg 2017-03-22 23:10:45 +08:00
parent aded78e2ea
commit 23103c2647

View File

@ -344,6 +344,9 @@ function! s:wait_for_input() " {{{
elseif match(inp, "^<LGCMD>submode") == 0
call s:submode_mappings()
else
if inp == ' '
let inp = '<space>'
endif
let fsel = get(s:lmap, inp)
call s:handle_input(fsel)
endif