diff options
author | Famiu Haque <famiuhaque@protonmail.com> | 2022-05-05 21:00:47 +0600 |
---|---|---|
committer | Famiu Haque <famiuhaque@protonmail.com> | 2022-05-05 23:17:36 +0600 |
commit | 96289f24169281da419e8ce1078705258db3229b (patch) | |
tree | 8300632f4e9b959dcf0be50bd5014d8813533089 /runtime | |
parent | 82c7a82c3585100e73e154c49e3e002b7dc35437 (diff) | |
download | rneovim-96289f24169281da419e8ce1078705258db3229b.tar.gz rneovim-96289f24169281da419e8ce1078705258db3229b.tar.bz2 rneovim-96289f24169281da419e8ce1078705258db3229b.zip |
feat(api): add `group_name` to `nvim_get_autocmds`
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/api.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/doc/api.txt b/runtime/doc/api.txt index d4477df803..1f97f38b54 100644 --- a/runtime/doc/api.txt +++ b/runtime/doc/api.txt @@ -3508,6 +3508,7 @@ nvim_get_autocmds({*opts}) *nvim_get_autocmds()* • id (number): the autocommand id (only when defined with the API). • group (integer): the autocommand group id. + • group_name (string): the autocommand group name. • desc (string): the autocommand description. • event (string): the autocommand event. • command (string): the autocommand command. |