Houl / repmo-vim

Repeat motions [for which a count was given]
38 stars 5 forks source link

How to cope with special case `%` #4

Open Houl opened 6 years ago

Houl commented 6 years ago

% invokes matchit. {count}% goes to {count}th percentage in the buffer. After %, {count}; should repeat % {count} times. Currently, {count}; repeats by going to buffer percentage (technically ok, but not expected). Maybe repeat using repeat('%', {count}) (although this can be awful with large count).