mirror of
https://github.com/neovim/neovim.git
synced 2025-09-22 11:18:19 +00:00
fix(docs): invalid :help links #20345
Fix those naughty single quotes. closes #20159
This commit is contained in:
@@ -599,7 +599,7 @@ void nvim_del_autocmd(Integer id, Error *err)
|
||||
}
|
||||
|
||||
/// Clear all autocommands that match the corresponding {opts}. To delete
|
||||
/// a particular autocmd, see |nvim_del_autocmd|.
|
||||
/// a particular autocmd, see |nvim_del_autocmd()|.
|
||||
/// @param opts Parameters
|
||||
/// - event: (string|table)
|
||||
/// Examples:
|
||||
@@ -728,7 +728,7 @@ Integer nvim_create_augroup(uint64_t channel_id, String name, Dict(create_augrou
|
||||
///
|
||||
/// To get a group id one can use |nvim_get_autocmds()|.
|
||||
///
|
||||
/// NOTE: behavior differs from |augroup-delete|. When deleting a group, autocommands contained in
|
||||
/// NOTE: behavior differs from |:augroup-delete|. When deleting a group, autocommands contained in
|
||||
/// this group will also be deleted and cleared. This group will no longer exist.
|
||||
/// @param id Integer The id of the group.
|
||||
/// @see |nvim_del_augroup_by_name()|
|
||||
@@ -746,10 +746,10 @@ void nvim_del_augroup_by_id(Integer id, Error *err)
|
||||
|
||||
/// Delete an autocommand group by name.
|
||||
///
|
||||
/// NOTE: behavior differs from |augroup-delete|. When deleting a group, autocommands contained in
|
||||
/// NOTE: behavior differs from |:augroup-delete|. When deleting a group, autocommands contained in
|
||||
/// this group will also be deleted and cleared. This group will no longer exist.
|
||||
/// @param name String The name of the group.
|
||||
/// @see |autocommand-groups|
|
||||
/// @see |autocmd-groups|
|
||||
void nvim_del_augroup_by_name(String name, Error *err)
|
||||
FUNC_API_SINCE(9)
|
||||
{
|
||||
|
Reference in New Issue
Block a user