diff options
author | Maria José Solano <majosolano99@gmail.com> | 2023-09-20 19:03:40 -0700 |
---|---|---|
committer | Lewis Russell <me@lewisr.dev> | 2023-09-23 23:46:45 +0100 |
commit | bc0bf9d030bbcb01db69c44cf88b95ca41dd3065 (patch) | |
tree | e3c25c261ac4af8c4c6a5f3f66d786aec1e5b613 /runtime/doc/lua.txt | |
parent | 01be28b370987447c78f313a65fdc289d79d4d8a (diff) | |
download | rneovim-bc0bf9d030bbcb01db69c44cf88b95ca41dd3065.tar.gz rneovim-bc0bf9d030bbcb01db69c44cf88b95ca41dd3065.tar.bz2 rneovim-bc0bf9d030bbcb01db69c44cf88b95ca41dd3065.zip |
docs: fix type warnings
Diffstat (limited to 'runtime/doc/lua.txt')
-rw-r--r-- | runtime/doc/lua.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/lua.txt b/runtime/doc/lua.txt index ddf11fd966..a77cc3b565 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -2752,7 +2752,7 @@ vim.keymap.del({modes}, {lhs}, {opts}) *vim.keymap.del()* Parameters: ~ • {opts} (table|nil) A table of optional arguments: - • "buffer": (number|boolean) Remove a mapping from the given + • "buffer": (integer|boolean) Remove a mapping from the given buffer. When `0` or `true`, use the current buffer. See also: ~ @@ -2786,7 +2786,7 @@ vim.keymap.set({mode}, {lhs}, {rhs}, {opts}) *vim.keymap.set()* • "noremap": inverse of "remap" (see below). • Also accepts: - • "buffer": (number|boolean) Creates buffer-local mapping, + • "buffer": (integer|boolean) Creates buffer-local mapping, `0` or `true` for current buffer. • "remap": (boolean) Make the mapping recursive. Inverse of "noremap". Defaults to `false`. |