aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/vim.c
diff options
context:
space:
mode:
authorZyX <kp-pav@yandex.ru>2017-12-12 00:44:25 +0300
committerZyX <kp-pav@yandex.ru>2017-12-12 00:44:25 +0300
commit1f9dd689b9f2b68edbc40cc3c60d46db853dda94 (patch)
tree1da60fa8fcc4fb8e2a578fac90edae3eb5618202 /src/nvim/api/vim.c
parent9f534422e6c3649ee40904ae3606455d26b48188 (diff)
parent8813b29cec13f7410427fbb8913d3753dd6626a7 (diff)
downloadrneovim-1f9dd689b9f2b68edbc40cc3c60d46db853dda94.tar.gz
rneovim-1f9dd689b9f2b68edbc40cc3c60d46db853dda94.tar.bz2
rneovim-1f9dd689b9f2b68edbc40cc3c60d46db853dda94.zip
Merge branch 'master' into hide-container-impl
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r--src/nvim/api/vim.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c
index 416e7d22d2..f0db391abe 100644
--- a/src/nvim/api/vim.c
+++ b/src/nvim/api/vim.c
@@ -789,6 +789,10 @@ ArrayOf(Dictionary) nvim_get_keymap(String mode)
return keymap_array(mode, NULL);
}
+/// Returns a 2-tuple (Array), where item 0 is the current channel id and item
+/// 1 is the |api-metadata| map (Dictionary).
+///
+/// @returns 2-tuple [{channel-id}, {api-metadata}]
Array nvim_get_api_info(uint64_t channel_id)
FUNC_API_SINCE(1) FUNC_API_ASYNC FUNC_API_REMOTE_ONLY
{
@@ -896,7 +900,9 @@ typedef struct {
Object *ret_node_p;
} ExprASTConvStackItem;
+///@cond DOXYGEN_NOT_A_FUNCTION
typedef kvec_withinit_t(ExprASTConvStackItem, 16) ExprASTConvStack;
+///@endcond
/// Parse a VimL expression
///