aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/msgpack_rpc.txt
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-06-14 23:12:43 -0400
committerJustin M. Keyes <justinkz@gmail.com>2016-06-15 19:29:27 -0400
commitcc6edfe357cfe139c6f08ea645d9ff6aa8cf008c (patch)
tree1d58c2346014553e5fce727511215b917b760e34 /runtime/doc/msgpack_rpc.txt
parent23a3e58f02e37ed5c6f8fa1f4758d0ebe1aed8d3 (diff)
downloadrneovim-cc6edfe357cfe139c6f08ea645d9ff6aa8cf008c.tar.gz
rneovim-cc6edfe357cfe139c6f08ea645d9ff6aa8cf008c.tar.bz2
rneovim-cc6edfe357cfe139c6f08ea645d9ff6aa8cf008c.zip
doc: remove "nvim-" qualfier from tags
It is almost never necessary to qualify documentation as "Nvim specific". The main exception to this is vim_diff.txt.
Diffstat (limited to 'runtime/doc/msgpack_rpc.txt')
-rw-r--r--runtime/doc/msgpack_rpc.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/runtime/doc/msgpack_rpc.txt b/runtime/doc/msgpack_rpc.txt
index 52d2efd8da..2db7c498e3 100644
--- a/runtime/doc/msgpack_rpc.txt
+++ b/runtime/doc/msgpack_rpc.txt
@@ -35,10 +35,10 @@ The RPC API is like a more powerful version of Vim's `clientserver` feature.
==============================================================================
2. API mapping *rpc-api*
-The Nvim C API, see |nvim-api|, is automatically exposed to the RPC API by the
-build system, which parses headers at src/nvim/api/*. A dispatch function is
-generated which matches RPC API method names with public API functions,
-converting/validating arguments and return values back to msgpack.
+The Nvim C |API| is automatically exposed to the RPC API by the build system,
+which parses headers at src/nvim/api/*. A dispatch function is generated which
+matches RPC API method names with public API functions, converting/validating
+arguments and return values back to msgpack.
Client libraries (|api-client|s) normally provide wrappers that hide
msgpack-rpc details from application developers. The wrappers can be
@@ -184,7 +184,7 @@ Vim class with methods mapped to functions prefixed with `vim_`.
==============================================================================
5. Types *rpc-types*
-The Nvim C API uses custom types for all functions. |nvim-api-types|
+The Nvim C API uses custom types for all functions. |api-types|
For the purpose of mapping to msgpack, the types can be split into two groups:
- Basic types that map natively to msgpack (and probably have a default