diff options
author | Kwon-Young <kwon-young.choi@hotmail.fr> | 2018-09-02 00:52:54 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-09-13 10:20:34 +0200 |
commit | d0c8dfc578dfda90a9f1311e9bb919f93df1a445 (patch) | |
tree | 3537c336f92a2501d5c1e60d3d9f261ee3290727 /runtime | |
parent | ea5337d9b5933680329e59d61d0808378574c256 (diff) | |
download | rneovim-d0c8dfc578dfda90a9f1311e9bb919f93df1a445.tar.gz rneovim-d0c8dfc578dfda90a9f1311e9bb919f93df1a445.tar.bz2 rneovim-d0c8dfc578dfda90a9f1311e9bb919f93df1a445.zip |
vim-patch:8.0.1089: range count in user command
Problem: Cannot get range count in user command.
Solution: Add <range> argument.
https://github.com/vim/vim/commit/c168bd4bd3a9b856fc410fc4515dcca1d10d7461
close #8946
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/map.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/doc/map.txt b/runtime/doc/map.txt index d630bf5652..836ac890be 100644 --- a/runtime/doc/map.txt +++ b/runtime/doc/map.txt @@ -1365,6 +1365,8 @@ The valid escape sequences are <line1> The starting line of the command range. *<line2>* <line2> The final line of the command range. + *<range>* + <range> The number of items in the command range: 0, 1 or 2 *<count>* <count> Any count supplied (as described for the '-range' and '-count' attributes). |