mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
docs(msgpack_rpc): add "msgpack-rpc" client type
This commit is contained in:
parent
01fe6b9e6a
commit
b46e93c5fd
@ -1336,7 +1336,11 @@ nvim_set_client_info({name}, {version}, {type}, {methods}, {attributes})
|
|||||||
• {type} Must be one of the following values. Client libraries
|
• {type} Must be one of the following values. Client libraries
|
||||||
should default to "remote" unless overridden by the
|
should default to "remote" unless overridden by the
|
||||||
user.
|
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
|
• "ui" gui frontend
|
||||||
• "embedder" application using Nvim as a component (for
|
• "embedder" application using Nvim as a component (for
|
||||||
example, IDE/editor implementing a vim mode).
|
example, IDE/editor implementing a vim mode).
|
||||||
|
6
runtime/lua/vim/_meta/api.lua
generated
6
runtime/lua/vim/_meta/api.lua
generated
@ -1679,7 +1679,11 @@ function vim.api.nvim_select_popupmenu_item(item, insert, finish, opts) end
|
|||||||
--- @param type string Must be one of the following values. Client libraries
|
--- @param type string Must be one of the following values. Client libraries
|
||||||
--- should default to "remote" unless overridden by the
|
--- should default to "remote" unless overridden by the
|
||||||
--- user.
|
--- 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
|
--- • "ui" gui frontend
|
||||||
--- • "embedder" application using Nvim as a component (for
|
--- • "embedder" application using Nvim as a component (for
|
||||||
--- example, IDE/editor implementing a vim mode).
|
--- example, IDE/editor implementing a vim mode).
|
||||||
|
@ -1497,7 +1497,10 @@ Array nvim_get_api_info(uint64_t channel_id, Arena *arena)
|
|||||||
/// - "commit" hash or similar identifier of commit
|
/// - "commit" hash or similar identifier of commit
|
||||||
/// @param type Must be one of the following values. Client libraries should
|
/// @param type Must be one of the following values. Client libraries should
|
||||||
/// default to "remote" unless overridden by the user.
|
/// 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
|
/// - "ui" gui frontend
|
||||||
/// - "embedder" application using Nvim as a component (for example,
|
/// - "embedder" application using Nvim as a component (for example,
|
||||||
/// IDE/editor implementing a vim mode).
|
/// IDE/editor implementing a vim mode).
|
||||||
|
Loading…
Reference in New Issue
Block a user