mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
doc: hack to avoid doxygen bug
Use `@cond <something>` to obscure a section from doxygen. doxygen thinks kvec_withinit_t() is a function. That adds noise to the generated API documentation, and also prevents the following function from being noticed.
This commit is contained in:
parent
abe38f7d26
commit
dc232b74fb
@ -446,7 +446,11 @@ nvim_get_keymap({mode}) *nvim_get_keymap()*
|
|||||||
Array of maparg()-like dictionaries describing mappings
|
Array of maparg()-like dictionaries describing mappings
|
||||||
|
|
||||||
nvim_get_api_info() *nvim_get_api_info()*
|
nvim_get_api_info() *nvim_get_api_info()*
|
||||||
TODO: Documentation
|
Returns a 2-tuple (Array), where item 0 is the current channel
|
||||||
|
id and item 1 is the |api-metadata| map (Dictionary).
|
||||||
|
|
||||||
|
Return:~
|
||||||
|
2-tuple [{channel-id}, {api-metadata}]
|
||||||
|
|
||||||
Attributes:~
|
Attributes:~
|
||||||
{async}
|
{async}
|
||||||
|
@ -789,6 +789,10 @@ ArrayOf(Dictionary) nvim_get_keymap(String mode)
|
|||||||
return keymap_array(mode, NULL);
|
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)
|
Array nvim_get_api_info(uint64_t channel_id)
|
||||||
FUNC_API_SINCE(1) FUNC_API_ASYNC FUNC_API_REMOTE_ONLY
|
FUNC_API_SINCE(1) FUNC_API_ASYNC FUNC_API_REMOTE_ONLY
|
||||||
{
|
{
|
||||||
@ -896,7 +900,9 @@ typedef struct {
|
|||||||
Object *ret_node_p;
|
Object *ret_node_p;
|
||||||
} ExprASTConvStackItem;
|
} ExprASTConvStackItem;
|
||||||
|
|
||||||
|
///@cond DOXYGEN_NOT_A_FUNCTION
|
||||||
typedef kvec_withinit_t(ExprASTConvStackItem, 16) ExprASTConvStack;
|
typedef kvec_withinit_t(ExprASTConvStackItem, 16) ExprASTConvStack;
|
||||||
|
///@endcond
|
||||||
|
|
||||||
/// Parse a VimL expression
|
/// Parse a VimL expression
|
||||||
///
|
///
|
||||||
|
Loading…
Reference in New Issue
Block a user