diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-06-10 10:44:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-10 10:44:31 +0800 |
commit | b6d2f49b4536f89cf2428d1f214468aa5fb21788 (patch) | |
tree | 3cbe7946047482cdd0506dbaa31d5fe91a5311b2 /runtime | |
parent | 7154f0c98619d0789618f370a6c7f81ee1775469 (diff) | |
download | rneovim-b6d2f49b4536f89cf2428d1f214468aa5fb21788.tar.gz rneovim-b6d2f49b4536f89cf2428d1f214468aa5fb21788.tar.bz2 rneovim-b6d2f49b4536f89cf2428d1f214468aa5fb21788.zip |
test: more tests for nvim_{set,del}_keymap with abbreviation (#23970)
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/api.txt | 2 | ||||
-rw-r--r-- | runtime/doc/news.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/api.txt b/runtime/doc/api.txt index 8c44db1867..748a8ba3bb 100644 --- a/runtime/doc/api.txt +++ b/runtime/doc/api.txt @@ -1487,7 +1487,7 @@ nvim_set_keymap({mode}, {lhs}, {rhs}, {*opts}) *nvim_set_keymap()* Parameters: ~ • {mode} Mode short-name (map command prefix: "n", "i", "v", "x", …) or "!" for |:map!|, or empty string for |:map|. "ia", "ca" or - "!a" for abbreviation in insert mode, cmdline mode, or both, + "!a" for abbreviation in Insert mode, Cmdline mode, or both, respectively • {lhs} Left-hand-side |{lhs}| of the mapping. • {rhs} Right-hand-side |{rhs}| of the mapping. diff --git a/runtime/doc/news.txt b/runtime/doc/news.txt index a901c4f13c..20d20d9a90 100644 --- a/runtime/doc/news.txt +++ b/runtime/doc/news.txt @@ -82,7 +82,7 @@ The following new APIs or features were added. • |vim.system()| for running system commands. -• |nvim_set_keymap()| now supports abbreviations. +• |nvim_set_keymap()| and |nvim_del_keymap()| now support abbreviations. ============================================================================== CHANGED FEATURES *news-changed* |