diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-10-23 10:10:18 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-10-23 21:19:08 -0300 |
commit | b4ec764e8e2dbd4a3ae4f29ed4d321ba51397b19 (patch) | |
tree | e60cbd7e330dd83c63924323a88564c9c2e75f3b | |
parent | d1e063a8af57661c37da31954346b2b9f73dd9b5 (diff) | |
download | rneovim-b4ec764e8e2dbd4a3ae4f29ed4d321ba51397b19.tar.gz rneovim-b4ec764e8e2dbd4a3ae4f29ed4d321ba51397b19.tar.bz2 rneovim-b4ec764e8e2dbd4a3ae4f29ed4d321ba51397b19.zip |
runtime: Fix rpcstop call in python_setup.vim
-rw-r--r-- | runtime/plugin/python_setup.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/plugin/python_setup.vim b/runtime/plugin/python_setup.vim index db8c6e3251..3a6c61bd1d 100644 --- a/runtime/plugin/python_setup.vim +++ b/runtime/plugin/python_setup.vim @@ -42,5 +42,5 @@ let s:pyhost_id = rpcstart(s:python_interpreter, " by the user's vimrc would not get has('python') == 1 if rpcrequest(s:pyhost_id, 'python_eval', '"o"+"k"') != 'ok' || !has('python') " Something went wrong - rpcstop(s:pyhost_id) + call rpcstop(s:pyhost_id) endif |