diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-12-05 21:09:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-05 21:09:31 +0800 |
commit | 707df880545703bc6f4db1af6e46820becbcd911 (patch) | |
tree | 3e8eae6467fac51aa32b286d8ccf366545272ae9 /src/nvim/api/command.c | |
parent | 6c285a6e49ba39eefff9e4aabd97df1cbe5eeedd (diff) | |
download | rneovim-707df880545703bc6f4db1af6e46820becbcd911.tar.gz rneovim-707df880545703bc6f4db1af6e46820becbcd911.tar.bz2 rneovim-707df880545703bc6f4db1af6e46820becbcd911.zip |
docs: add missing docs from some Vim patches (#21296)
This is cherry-picked from these Vim patches:
Only applicable change outside vi_diff.txt in patch 8.1.1226:
https://github.com/vim/vim/commit/6c60f47fb9251e686217d51cf81847e14d0dd26d
Most changes outside starting.txt and vi_diff.txt in patch 8.1.1280:
https://github.com/vim/vim/commit/25c9c680ec4dfbb51f4ef21c3460a48d3c67ffc8
Missing docs for 'mousemoveevent':
https://github.com/vim/vim/commit/cbaff5e06ec525d31dc44093125c42029e01d508
Diffstat (limited to 'src/nvim/api/command.c')
-rw-r--r-- | src/nvim/api/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/api/command.c b/src/nvim/api/command.c index 416dbc0e5d..ac1927eeb1 100644 --- a/src/nvim/api/command.c +++ b/src/nvim/api/command.c @@ -57,7 +57,7 @@ /// Omitted if command cannot take a register. /// - bang: (boolean) Whether command contains a |<bang>| (!) modifier. /// - args: (array) Command arguments. -/// - addr: (string) Value of |:command-addr|. Uses short name. +/// - addr: (string) Value of |:command-addr|. Uses short name or "line" for -addr=lines. /// - nargs: (string) Value of |:command-nargs|. /// - nextcmd: (string) Next command if there are multiple commands separated by a |:bar|. /// Empty if there isn't a next command. |