Fix <Plug>-based on-demand-loading on visual mode

This commit is contained in:
Junegunn Choi 2014-07-07 19:06:20 +09:00
parent 7f1ec7b12b
commit f1c5157e35

View File

@ -141,10 +141,11 @@ function! plug#end()
for cmd in commands
if cmd =~ '^<Plug>.\+'
if empty(mapcheck(cmd)) && empty(mapcheck(cmd, 'i'))
for [mode, prefix] in [['i', "<C-O>"], ['', '']]
for [mode, map_prefix, key_prefix] in
\ [['i', "<C-O>", ''], ['n', '', ''], ['v', '', 'gv'], ['o', '', '']]
execute printf(
\ "%snoremap <silent> %s %s:call <SID>lod_map(%s, %s)<CR>",
\ mode, cmd, prefix, string(cmd), string(plug))
\ "%snoremap <silent> %s %s:call <SID>lod_map(%s, %s, '%s')<CR>",
\ mode, cmd, map_prefix, string(cmd), string(plug), key_prefix)
endfor
endif
elseif !exists(':'.cmd)
@ -221,7 +222,7 @@ function! s:lod_cmd(cmd, bang, l1, l2, args, plug)
execute printf("%s%s%s %s", (a:l1 == a:l2 ? '' : (a:l1.','.a:l2)), a:cmd, a:bang, a:args)
endfunction
function! s:lod_map(map, plug)
function! s:lod_map(map, plug, prefix)
execute 'unmap '.a:map
execute 'iunmap '.a:map
call s:lod(a:plug, ['plugin', 'ftdetect', 'after'])
@ -233,7 +234,7 @@ function! s:lod_map(map, plug)
endif
let extra .= nr2char(c)
endwhile
call feedkeys(substitute(a:map, '^<Plug>', "\<Plug>", '') . extra)
call feedkeys(a:prefix . substitute(a:map, '^<Plug>', "\<Plug>", '') . extra)
endfunction
function! s:add(...)