mirror of
https://github.com/neovim/neovim.git
synced 2025-09-13 06:48:17 +00:00

External plugins(a.k.a msgpack-rpc plugins) are now supported through a library of vimscript functions that deals with: - Associating plugin host names(eg: python, ruby, go) with channel ids - Registration of external plugins - Definition of commands, autocmds and functions lazily implemented over msgpack-rpc
6 lines
127 B
VimL
6 lines
127 B
VimL
if exists('loaded_external_plugins') || &cp
|
|
finish
|
|
endif
|
|
let loaded_external_plugins = 1
|
|
call rpc#host#LoadExternalPlugins()
|