mirror of
https://github.com/neovim/neovim.git
synced 2026-04-24 16:25:40 +00:00
runtime: Add vimscript support for external plugins
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
This commit is contained in:
5
runtime/plugin/external_plugins.vim
Normal file
5
runtime/plugin/external_plugins.vim
Normal file
@@ -0,0 +1,5 @@
|
||||
if exists('loaded_external_plugins') || &cp
|
||||
finish
|
||||
endif
|
||||
let loaded_external_plugins = 1
|
||||
call rpc#host#LoadExternalPlugins()
|
||||
Reference in New Issue
Block a user