diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-05-07 09:46:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-07 09:46:06 +0200 |
commit | 6c39f9d4277778d8532bf8c308d59470a03ee2b9 (patch) | |
tree | 2b4d674d8e6924f25c1c2e61282bf742beb43351 /runtime | |
parent | cd8edb551b6eed3424c2525e50d2a5eecbfe7ccf (diff) | |
parent | 14f3383c0da1413a5ae82feb19ac89f01d4b9aad (diff) | |
download | rneovim-6c39f9d4277778d8532bf8c308d59470a03ee2b9.tar.gz rneovim-6c39f9d4277778d8532bf8c308d59470a03ee2b9.tar.bz2 rneovim-6c39f9d4277778d8532bf8c308d59470a03ee2b9.zip |
Merge pull request #18457 from famiu/feat/api/nvim_parse_cmd
fix(api): make `nvim_parse_cmd` work correctly with both range and count
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/api.txt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/doc/api.txt b/runtime/doc/api.txt index 242546f87d..50fe60a0fc 100644 --- a/runtime/doc/api.txt +++ b/runtime/doc/api.txt @@ -1782,8 +1782,7 @@ nvim_parse_cmd({str}, {opts}) *nvim_parse_cmd()* 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. Mutually - exclusive with "range". + command. -1 if command cannot take a count. • reg: (number) The optional command |<register>|, if specified. Empty string if not specified or if command cannot take a register. |