diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-06-13 02:11:12 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-06-15 19:29:26 -0400 |
commit | 23a3e58f02e37ed5c6f8fa1f4758d0ebe1aed8d3 (patch) | |
tree | 4afeb551e0a0a2886b82f9682ddd40fbc9254e95 /runtime/doc/nvim_python.txt | |
parent | bd20892bdf15e45c4ea5827250e3aa0c2ace24a0 (diff) | |
download | rneovim-23a3e58f02e37ed5c6f8fa1f4758d0ebe1aed8d3.tar.gz rneovim-23a3e58f02e37ed5c6f8fa1f4758d0ebe1aed8d3.tar.bz2 rneovim-23a3e58f02e37ed5c6f8fa1f4758d0ebe1aed8d3.zip |
doc: msgpack_rpc: De-emphasize the transport protocol.
Tighten our jargon, avoid mentioning "msgpack" everywhere we mention the
RPC API. Prefer "RPC API" when speaking about the remote API.
Though it's conceivable that we may one day support some protocol other
than msgpack, that isn't relevant to most of our discussion of the API,
including this document.
The file name msgpack_rpc.txt is preserved to avoid totally breaking
URLs.
Diffstat (limited to 'runtime/doc/nvim_python.txt')
-rw-r--r-- | runtime/doc/nvim_python.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/nvim_python.txt b/runtime/doc/nvim_python.txt index 27955a76b1..c2a86650ac 100644 --- a/runtime/doc/nvim_python.txt +++ b/runtime/doc/nvim_python.txt @@ -13,10 +13,10 @@ Python plugins and scripting in Nvim *nvim-python* ============================================================================== 1. Introduction *nvim-python-intro* -Through external Python 2/3 interpreters connected via |msgpack-rpc|, Nvim -offers some support for the legacy |python-vim| and |python3| interfaces. +Through external Python interpreters connected via |rpc|, Nvim supports the +legacy |python-vim| and |python3| interfaces. -Note: For now only the old Vim 7.3 API is supported. +Note: Only the Vim 7.3 API is supported; bindeval (Vim 7.4) is not. ============================================================================== 2. Quickstart *nvim-python-quickstart* |