diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-06-26 18:27:01 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-07-17 11:37:41 -0300 |
commit | 486c8e37c17e4aa89fa9ef7e0c682b659a5a8a82 (patch) | |
tree | 08768b45ebf42eb2c0594cc3d506672213eb3201 /src/nvim/ex_docmd.c | |
parent | 8a091e7f5c58a27fb3af1de76284430e812c95b5 (diff) | |
download | rneovim-486c8e37c17e4aa89fa9ef7e0c682b659a5a8a82.tar.gz rneovim-486c8e37c17e4aa89fa9ef7e0c682b659a5a8a82.tar.bz2 rneovim-486c8e37c17e4aa89fa9ef7e0c682b659a5a8a82.zip |
provider: Add support for python commands/functions
This uses the provider/scripting infrastructure to reintroduce python support
through the msgpack-rpc API.
A new 'initpython' option was added, and it must be set to a command that will
bootstrap the python provider the first time it's needed.
Diffstat (limited to 'src/nvim/ex_docmd.c')
-rw-r--r-- | src/nvim/ex_docmd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index a82623691e..3eb9d1277e 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -1859,6 +1859,7 @@ static char_u * do_one_cmd(char_u **cmdlinep, case CMD_noautocmd: case CMD_noswapfile: case CMD_psearch: + case CMD_python: case CMD_return: case CMD_rightbelow: case CMD_silent: |