diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-04-08 23:08:01 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-04-22 20:56:16 +0200 |
commit | 4d97abe805ce7153f29a40c3614a960a7d6e8371 (patch) | |
tree | 983cc76a951026fd97c9cb97b9e1d127dc97e799 /runtime/doc/msgpack_rpc.txt | |
parent | 43356a43d00ff69e90afd5186e066b4d27b66d9d (diff) | |
download | rneovim-4d97abe805ce7153f29a40c3614a960a7d6e8371.tar.gz rneovim-4d97abe805ce7153f29a40c3614a960a7d6e8371.tar.bz2 rneovim-4d97abe805ce7153f29a40c3614a960a7d6e8371.zip |
doc
Diffstat (limited to 'runtime/doc/msgpack_rpc.txt')
-rw-r--r-- | runtime/doc/msgpack_rpc.txt | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/runtime/doc/msgpack_rpc.txt b/runtime/doc/msgpack_rpc.txt index 862aa7b750..91a4a3c267 100644 --- a/runtime/doc/msgpack_rpc.txt +++ b/runtime/doc/msgpack_rpc.txt @@ -114,17 +114,18 @@ You can also embed an Nvim instance via |jobstart()|, and communicate using ============================================================================== 4. Implementing API clients *rpc-api-client* *api-client* -"API clients" wrap the Nvim API to provide idiomatic "SDKs" for their -respective platforms (see |dev-jargon|). You can build a new API client for -your favorite platform or programming language. +API clients wrap the Nvim API to provide idiomatic "SDKs" for their respective +platforms (see |jargon|). You can build a new API client for your favorite +platform or programming language. -Existing API clients are listed here: +API clients are listed here: https://github.com/neovim/neovim/wiki/Related-projects#api-clients + *pynvim* The Python client is the reference implementation for API clients. It is always up-to-date with the Nvim API, so its source code and test suite are authoritative references. - https://github.com/neovim/python-client + https://github.com/neovim/pynvim API client implementation guidelines ~ |