diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-09-27 14:40:10 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-09-30 11:24:23 +0800 |
commit | cb62592bcb03d7934416cf46bede3b8296254c87 (patch) | |
tree | 417e9d38d821df4515df4b7ec119fcb6ee4c142a /runtime | |
parent | 33dd917d7fdc40483b3d18d0c7bcf5994b26fe86 (diff) | |
download | rneovim-cb62592bcb03d7934416cf46bede3b8296254c87.tar.gz rneovim-cb62592bcb03d7934416cf46bede3b8296254c87.tar.bz2 rneovim-cb62592bcb03d7934416cf46bede3b8296254c87.zip |
fix(api)!: nvim_parse_cmd omit "count" "range" "reg" if not supported
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/api.txt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/runtime/doc/api.txt b/runtime/doc/api.txt index 59d1d36be9..d6bec9f244 100644 --- a/runtime/doc/api.txt +++ b/runtime/doc/api.txt @@ -1805,15 +1805,15 @@ nvim_parse_cmd({str}, {opts}) *nvim_parse_cmd()* Return: ~ Dictionary containing command information, with these keys: • cmd: (string) Command name. - • range: (array) Command <range>. Can have 0-2 elements depending on - how many items the range contains. Has no elements if command - doesn't accept a range or if no range was specified, one element if - only a single range item was specified and two elements if both - range items were specified. - • count: (number) Any |<count>| that was supplied to the command. -1 - if command cannot take a count. - • reg: (string) The optional command |<register>|, if specified. Empty - string if not specified or if command cannot take a register. + • range: (array) (optional) Command range (|<line1>| |<line2>|). + Omitted if command doesn't accept a range. Otherwise, has no + elements if no range was specified, one element if only a single + range item was specified, or two elements if both range items were + specified. + • count: (number) (optional) Command |<count>|. Omitted if command + cannot take a count. + • reg: (string) (optional) Command |<register>|. 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. |