repmo-vim icon indicating copy to clipboard operation
repmo-vim copied to clipboard

Repeat motions [for which a count was given]

Results 7 repmo-vim issues
Sort by recently updated
recently updated
newest added

Hi, I see this settings in readme: " repeat the last [count]motion or the last zap-key: :map ; repmo#LastKey(';')|sunmap ; :map , repmo#LastRevKey(',')|sunmap , However I use `,` as my...

``` if exists("loaded_repmo") finish endif let loaded_repmo = 1 ``` Should that be `g:loaded_repmo`? Would you accept a PR as such? If not, how do I detect repmo is loaded....

My vimrc ``` source $VIMRUNTIME/defaults.vim map ; repmo#LastKey(';')|sunmap ; map , repmo#LastRevKey(',')|sunmap , " Still repeat fFtT (now with counts): noremap f repmo#ZapKey('f')|sunmap f noremap F repmo#ZapKey('F')|sunmap F noremap t...

As a user it would be nice to have more suggestions in README.md how to extend other builtin motions and support third party motions. Following list tries to be comprehensive...

Came across this plugin while looking for a plugin to repeat motions from here: https://stackoverflow.com/a/26553473/4752883 Can the features from this plugin be included in this: https://github.com/vim-scripts/repeat-motion?

`%` 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...

I am using VSCode with VSCode Neovim extension. I'd like to use repmo-vim to repeat commands such as `[[`, `]]`, `[]`, `][`, `]m`, `[m`, `]M`, `[M`, but it's not working....