You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
so that e.g. 5<C-v> would type :exec xterm ... $PAGE $FILE 5<Return>. It would also be good to have a special place holder for empty.
Expected behavior
↑
For reference: the vim behavior is to map 3: to :.,.+2 (which in vim's context only makes sense as "from current line to 2 lines next"). Alternatively we can implement something similar to vim's v:count.
A potential disadvantage is then existing code that uses $COUNT will break — but I think this is negligible.
The text was updated successfully, but these errors were encountered:
Is there an existing issue for this?
Problem
Currently I have a mapping of the following form
Ideally I want to write
so that e.g.
5<C-v>
would type:exec xterm ... $PAGE $FILE 5<Return>
. It would also be good to have a special place holder for empty.Expected behavior
↑
For reference: the vim behavior is to map
3:
to:.,.+2
(which in vim's context only makes sense as "from current line to 2 lines next"). Alternatively we can implement something similar to vim'sv:count
.A potential disadvantage is then existing code that uses
$COUNT
will break — but I think this is negligible.The text was updated successfully, but these errors were encountered: