Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vimium: something like "f" for input fields?

Tags:

vimium

In Vimium, is there something like f for input fields? E.g. in a form with 10 input fields, I directly want to jump to the 5th, instead of only gi and tabbing through. Is that possible using Vimium?

like image 644
stefan.at.wpf Avatar asked Feb 18 '26 02:02

stefan.at.wpf


1 Answers

Yes, as in many shortcuts in vim you can prefix a command with a number. I.e. to jump to the 5th field you type 5gi.

Other vim style examples (It isn't related to vimium. I included it only to illustrate the approach):

  • 3dd delete 3 lines
  • 2j go up 2 lines
  • 5p paste the buffer 5 times
like image 81
Sergey Romanovsky Avatar answered Feb 21 '26 14:02

Sergey Romanovsky