diff options
| -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 ddbdc2d7f2..64f6ddb759 100644 --- a/runtime/autoload/remote/host.vim +++ b/runtime/autoload/remote/host.vim @@ -81,7 +81,7 @@ function! remote#host#RegisterPlugin(host, path, specs)      endif    endfor -  if remote#host#IsRunning(a:host) +  if has_key(s:hosts, a:host) && remote#host#IsRunning(a:host)      " For now we won't allow registration of plugins when the host is already      " running.      throw 'Host "'.a:host.'" is already running' | 
