aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorFamiu Haque <famiuhaque@protonmail.com>2022-05-07 08:57:21 +0600
committerFamiu Haque <famiuhaque@protonmail.com>2022-05-07 12:26:49 +0600
commit14f3383c0da1413a5ae82feb19ac89f01d4b9aad (patch)
tree5ebc5fa82a29f0dd3e3aafc927b517a0d95e7ae9 /runtime
parentb2a8ed08551d2edf2bf98e830860f0130acd00f8 (diff)
downloadrneovim-14f3383c0da1413a5ae82feb19ac89f01d4b9aad.tar.gz
rneovim-14f3383c0da1413a5ae82feb19ac89f01d4b9aad.tar.bz2
rneovim-14f3383c0da1413a5ae82feb19ac89f01d4b9aad.zip
fix(api): make `nvim_parse_cmd` work correctly with both range and count
It seems range and count can be used together in commands. This PR fixes the behavior of `nvim_parse_cmd` for those cases by removing the mutual exclusivity of "range" and "count". It also removes range line number validation for `nvim_parse_cmd` as it's not its job to validate the command.
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/api.txt3
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.