From 4af5cfb51738b6740c03bd43672057202034d2f3 Mon Sep 17 00:00:00 2001 From: Thiago de Arruda Date: Mon, 17 Nov 2014 10:46:13 -0300 Subject: 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 --- runtime/plugin/external_plugins.vim | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 runtime/plugin/external_plugins.vim (limited to 'runtime/plugin') diff --git a/runtime/plugin/external_plugins.vim b/runtime/plugin/external_plugins.vim new file mode 100644 index 0000000000..1c5fa1ab8e --- /dev/null +++ b/runtime/plugin/external_plugins.vim @@ -0,0 +1,5 @@ +if exists('loaded_external_plugins') || &cp + finish +endif +let loaded_external_plugins = 1 +call rpc#host#LoadExternalPlugins() -- cgit