diff options
author | Geoff Harcourt <geoff.harcourt@gmail.com> | 2015-02-24 17:31:42 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-03-08 17:23:48 -0400 |
commit | c0a668aa26a01145bee1d8162e14bacd0a10eca2 (patch) | |
tree | 7565c4f7e4cdd50220801b205c9f02b9d095daef /runtime/doc/nvim_python.txt | |
parent | da457a176be338fcee429684ced8d2dc8b4aefd4 (diff) | |
download | rneovim-c0a668aa26a01145bee1d8162e14bacd0a10eca2.tar.gz rneovim-c0a668aa26a01145bee1d8162e14bacd0a10eca2.tar.bz2 rneovim-c0a668aa26a01145bee1d8162e14bacd0a10eca2.zip |
docs: Clean up python, provider, remote_plugin #2056
* "Python" is a proper noun and should be capitalized in prose
* Corrected use of "its/it's"
* Used better preposition to describe something "in" legacy Vim
* Combine fragments into complete sentence
Diffstat (limited to 'runtime/doc/nvim_python.txt')
-rw-r--r-- | runtime/doc/nvim_python.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/runtime/doc/nvim_python.txt b/runtime/doc/nvim_python.txt index 486c25edd0..4d80fe941f 100644 --- a/runtime/doc/nvim_python.txt +++ b/runtime/doc/nvim_python.txt @@ -12,22 +12,22 @@ Python plugins and scripting in Nvim *nvim-python* ============================================================================== 1. Introduction *nvim-python-intro* -Through an external python interpreter connected via |msgpack-rpc|, Nvim +Through an external Python interpreter connected via |msgpack-rpc|, Nvim offers some support for the legacy |python-vim| interface. For now only the old Vim 7.3 API is supported. ============================================================================== 2. Quickstart *nvim-python-quickstart* -If you just want to start using Vim python plugins with Nvim quickly, here's a +If you just want to start using Vim Python plugins with Nvim quickly, here's a simple tutorial: -- Make sure python 2.6 or 2.7 is available in your `$PATH` -- Install the `neovim` python package: +- Make sure Python 2.6 or 2.7 is available in your `$PATH` +- Install the `neovim` Python package: > $ pip install neovim < -Most python plugins created for Vim 7.3 should work after these steps. +Most Python plugins created for Vim 7.3 should work after these steps. ============================================================================== vim:tw=78:ts=8:noet:ft=help:norl: |