hi,
i want to emulate VIM way of entering a number followed by command, so if 'dd' is used to delete 1 line, 'd3d' will remove 3 lines etc.
e.g. i would like the following to work:
<binding key="d" command="deleteRange ${motion}"><context name="option" value="ctrlMode"/></binding>
<namespace name="motion">
<binding key="j" command="lines 1"/>
<binding key="k" command="lines -1"/>
<binding key="d" command="lines 1"/>
<binding key="/\d+/" command="${motion} $1"/>
</namespace>
but it doesn't. am i doing it wrong, or it just not supported.