diff options
author | zandrmartin <zandrmartin@users.noreply.github.com> | 2018-01-17 19:50:17 +0000 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-01-17 20:50:17 +0100 |
commit | 8fc437ef43dbaccf873c9af448495387410e465c (patch) | |
tree | 5431193ad58bd113dc5a03e7dfbc1a1d5b084ac5 | |
parent | 1c6e956079585fcba401f9d46c5e7f9248ee50f6 (diff) | |
download | rneovim-8fc437ef43dbaccf873c9af448495387410e465c.tar.gz rneovim-8fc437ef43dbaccf873c9af448495387410e465c.tar.bz2 rneovim-8fc437ef43dbaccf873c9af448495387410e465c.zip |
runtime: UpdateRemotePlugins: allow bar (#7865)
-rw-r--r-- | runtime/plugin/rplugin.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/plugin/rplugin.vim b/runtime/plugin/rplugin.vim index ca15ec82d1..56163c894e 100644 --- a/runtime/plugin/rplugin.vim +++ b/runtime/plugin/rplugin.vim @@ -56,6 +56,6 @@ function! s:LoadRemotePlugins() abort endif endfunction -command! UpdateRemotePlugins call remote#host#UpdateRemotePlugins() +command! -bar UpdateRemotePlugins call remote#host#UpdateRemotePlugins() call s:LoadRemotePlugins() |