if __name__ is None
if __name__ is None

Reputation: 11533

Vim consolidating `;` into `n`

I've been reworking some of key bindings that represent a friction in my workflow. One of the major annoyances for me are ; and ,, which perform jumps after character search (f, t, F, T).

So I thought, is it possible to consolidate with search (/foo<CR>) jumps, the latter being n and N respectively.

I'd like to do so in a fashion, that wouldn't break anything. I have been unsuccessful so far.

Upvotes: 1

Views: 34

Answers (1)

Julian
Julian

Reputation: 3429

Rather than consolidating these into n, I'd recommend taking a look at clever-f

Upvotes: 1

Related Questions