diff options
author | Alisue <lambdalisue@gmail.com> | 2023-08-07 00:19:51 +0900 |
---|---|---|
committer | Alisue <lambdalisue@gmail.com> | 2023-08-26 19:14:07 +0900 |
commit | b46e93c5fd2c73b99b618d4954ab8d1c71ad3fb0 (patch) | |
tree | 575afd3fb09277927e17c80804b7f4c213134a62 /runtime/doc | |
parent | 01fe6b9e6a84338d4752c93a286262d79120f163 (diff) | |
download | rneovim-b46e93c5fd2c73b99b618d4954ab8d1c71ad3fb0.tar.gz rneovim-b46e93c5fd2c73b99b618d4954ab8d1c71ad3fb0.tar.bz2 rneovim-b46e93c5fd2c73b99b618d4954ab8d1c71ad3fb0.zip |
docs(msgpack_rpc): add "msgpack-rpc" client type
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/api.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/runtime/doc/api.txt b/runtime/doc/api.txt index 793fcd703b..343c63f4b0 100644 --- a/runtime/doc/api.txt +++ b/runtime/doc/api.txt @@ -1336,7 +1336,11 @@ nvim_set_client_info({name}, {version}, {type}, {methods}, {attributes}) • {type} Must be one of the following values. Client libraries should default to "remote" unless overridden by the user. - • "remote" remote client connected to Nvim. + • "remote" remote client connected "Nvim flavored" + MessagePack-RPC (responses must be in reverse order of + requests). |msgpack-rpc| + • "msgpack-rpc" remote client connected to Nvim via + fully MessagePack-RPC compliant protocol. • "ui" gui frontend • "embedder" application using Nvim as a component (for example, IDE/editor implementing a vim mode). |