aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-04-18 02:28:58 -0400
committerJustin M. Keyes <justinkz@gmail.com>2016-04-18 02:28:58 -0400
commit28b9a2864ad4f2f04a1fa9078709de2be1efcc2a (patch)
tree2b5a69a967594f8074a2c8c5841e6b5a2dc9dabc
parent40cc5ba0e23c919294dd07dfec40d387324f345f (diff)
parente5147ce6a0ea84c8b72043ba7d66d56046c90ca9 (diff)
downloadrneovim-28b9a2864ad4f2f04a1fa9078709de2be1efcc2a.tar.gz
rneovim-28b9a2864ad4f2f04a1fa9078709de2be1efcc2a.tar.bz2
rneovim-28b9a2864ad4f2f04a1fa9078709de2be1efcc2a.zip
Merge pull request #4590 from Streetwalrus/issue4471
rplugin: Don't chain events.
-rw-r--r--runtime/autoload/remote/host.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/autoload/remote/host.vim b/runtime/autoload/remote/host.vim
index 1aead649a0..8faeaed2ea 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 'silent doautocmd' a:event a:pattern
+ execute 'silent doautocmd <nomodeline>' a:event a:pattern
endfunction