Check for full match of command name
This commit is contained in:
parent
2ee153d610
commit
53cc8a53d9
1 changed files with 1 additions and 1 deletions
2
plug.vim
2
plug.vim
|
@ -171,7 +171,7 @@ function! plug#end()
|
|||
endif
|
||||
call add(s:triggers[name].map, cmd)
|
||||
elseif cmd =~ '^[A-Z]'
|
||||
if !exists(':'.cmd)
|
||||
if exists(':'.cmd) != 2
|
||||
execute printf(
|
||||
\ 'command! -nargs=* -range -bang %s call s:lod_cmd(%s, "<bang>", <line1>, <line2>, <q-args>, %s)',
|
||||
\ cmd, string(cmd), string(name))
|
||||
|
|
Loading…
Reference in a new issue