diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-02 11:13:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-02 11:13:22 +0800 |
commit | 0a049c322fda5f2bb124429086c2713ff99c7142 (patch) | |
tree | cda051948c3dbaa29d7cac37d921829eb86ad380 /src/nvim/api/buffer.c | |
parent | 9c91d5c61382639c06ca59e6cc2bfda6ba6abf18 (diff) | |
download | rneovim-0a049c322fda5f2bb124429086c2713ff99c7142.tar.gz rneovim-0a049c322fda5f2bb124429086c2713ff99c7142.tar.bz2 rneovim-0a049c322fda5f2bb124429086c2713ff99c7142.zip |
test: improve mapping tests and docs (#19619)
Diffstat (limited to 'src/nvim/api/buffer.c')
-rw-r--r-- | src/nvim/api/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/api/buffer.c b/src/nvim/api/buffer.c index 5e54d0ec9a..1b1a161226 100644 --- a/src/nvim/api/buffer.c +++ b/src/nvim/api/buffer.c @@ -932,7 +932,7 @@ Integer nvim_buf_get_changedtick(Buffer buffer, Error *err) /// @param mode Mode short-name ("n", "i", "v", ...) /// @param buffer Buffer handle, or 0 for current buffer /// @param[out] err Error details, if any -/// @returns Array of maparg()-like dictionaries describing mappings. +/// @returns Array of |maparg()|-like dictionaries describing mappings. /// The "buffer" key holds the associated buffer handle. ArrayOf(Dictionary) nvim_buf_get_keymap(uint64_t channel_id, Buffer buffer, String mode, Error *err) FUNC_API_SINCE(3) |