From 486c8e37c17e4aa89fa9ef7e0c682b659a5a8a82 Mon Sep 17 00:00:00 2001 From: Thiago de Arruda Date: Thu, 26 Jun 2014 18:27:01 -0300 Subject: 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. --- src/nvim/testdir/test86.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/testdir') diff --git a/src/nvim/testdir/test86.in b/src/nvim/testdir/test86.in index 240e07e477..ecb06bafd3 100644 --- a/src/nvim/testdir/test86.in +++ b/src/nvim/testdir/test86.in @@ -9,7 +9,7 @@ STARTTEST :so small.vim :set encoding=latin1 :set noswapfile -:if !has('python') | e! test.ok | wq! test.out | endif +:if !has('python') || has('neovim') | e! test.ok | wq! test.out | endif :lang C :fun Test() :py import vim -- cgit