diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-03-11 01:22:41 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-03-11 01:22:41 -0500 |
commit | 1c066e671d0ebd632071b87b4d0e15dcdc659535 (patch) | |
tree | f895988e7cf80a47b650b3b4d43d6f74dd34bd71 | |
parent | 662eea8287346dba3791d73c0280ddb302223a4d (diff) | |
download | rneovim-1c066e671d0ebd632071b87b4d0e15dcdc659535.tar.gz rneovim-1c066e671d0ebd632071b87b4d0e15dcdc659535.tar.bz2 rneovim-1c066e671d0ebd632071b87b4d0e15dcdc659535.zip |
rplugin: Silence :doautocmd. #4384
-rw-r--r-- | runtime/autoload/remote/host.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/autoload/remote/host.vim b/runtime/autoload/remote/host.vim index d636f3d601..b9b167717a 100644 --- a/runtime/autoload/remote/host.vim +++ b/runtime/autoload/remote/host.vim @@ -130,7 +130,7 @@ endfunction function! remote#host#LoadRemotePluginsEvent(event, pattern) abort autocmd! nvim-rplugin call remote#host#LoadRemotePlugins() - execute 'doautocmd' a:event a:pattern + execute 'silent doautocmd' a:event a:pattern endfunction |