I want to reduce visual noise, so turn off highlighting until a motion key is pressed:
let g:qs_highlight_on_keys = ['f', 'F', 't', 'T']
However, when I'm using repmo-vim (repeat motion), it doesn't work as expected:
I can't press fa to go to the first a, then use repmo's ; to repeat the motion and jump to the next a.
What happens when pressing ; is that all the jumpable targets are highlighted.
repmo config:
nmap <expr> f repmo#Key('<Plug>(QuickScopef)', '<Plug>(QuickScopeF)')
nmap <expr> F repmo#Key('<Plug>(QuickScopeF)', '<Plug>(QuickScopef)')
I want to reduce visual noise, so turn off highlighting until a motion key is pressed:
However, when I'm using repmo-vim (repeat motion), it doesn't work as expected:
I can't press
fato go to the firsta, then use repmo's;to repeat the motion and jump to the nexta.What happens when pressing
;is that all the jumpable targets are highlighted.repmo config: