2014-09-13 21:17:13 -03:00
|
|
|
*nvim_python.txt* For Nvim. {Nvim}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NVIM REFERENCE MANUAL by Thiago de Arruda
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Python plugins and scripting in Nvim *nvim-python*
|
|
|
|
|
|
|
|
|
|
1. Introduction |nvim-python-intro|
|
|
|
|
|
2. Quickstart |nvim-python-quickstart|
|
|
|
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
|
1. Introduction *nvim-python-intro*
|
|
|
|
|
|
|
|
|
|
Through an external python interpreter connected via |msgpack-rpc|, Nvim
|
2014-12-07 04:28:48 -05:00
|
|
|
offers some support for the legacy |python-vim| interface. For now only the
|
2014-09-13 21:17:13 -03:00
|
|
|
old Vim 7.3 API is supported.
|
|
|
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
|
2. Quickstart *nvim-python-quickstart*
|
|
|
|
|
|
2014-12-07 04:28:48 -05:00
|
|
|
If you just want to start using Vim python plugins with Nvim quickly, here's a
|
|
|
|
|
simple tutorial:
|
2014-09-13 21:17:13 -03:00
|
|
|
|
2014-12-07 04:28:48 -05:00
|
|
|
- Make sure python 2.6 or 2.7 is available in your `$PATH`
|
2014-09-13 21:17:13 -03:00
|
|
|
- Install the `neovim` python package:
|
|
|
|
|
>
|
|
|
|
|
$ pip install neovim
|
|
|
|
|
<
|
|
|
|
|
Most python plugins created for Vim 7.3 should work after these steps.
|
|
|
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
|
vim:tw=78:ts=8:noet:ft=help:norl:
|