Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Moving cursor with t and f, using word as parameter, vim

Is it possible in vim to move forward with t and f (or in the other way with T and F), but using words as a parameter ?

like image 217
Niloct Avatar asked Sep 26 '11 12:09

Niloct


2 Answers

What about /word?

It can be combined with operators just like anything else:

the lazy cow jumped over the high moon

cursor at start, d/highEnter:

high moon

Bonus

Also, you might be interested in learning some of the ex mode commands like that:

the lazy cow jumped over the high moon
the hazy cow jumped over the high moon
the noble cow jumped over the high moon
the crazy cow jumped over the high moon

Now enter

:g/azy/ norm! /jumped<CR>d/high/e<CR>

(Note: <CR> denotes C-vC-m for the enter key (^M))

Result:

the lazy cow  moon
the hazy cow  moon
the noble cow jumped over the high moon
the crazy cow  moon

The /e flag achieves inclusive behaviour like with f; To get 'till behaviour instead:

:g/azy/ norm! /jumped<CR>d/high/<CR>

Result:

the lazy cow high moon
the hazy cow high moon
the noble cow jumped over the high moon
the crazy cow high moon
like image 70
sehe Avatar answered Sep 19 '22 02:09

sehe


Try using * or # to search for instances of the word under the cursor. You’ll notice that it sets the pattern to \<foobar\>, so you can use a pattern like that to find the word you want, surrounded by word boundary characters.

like image 34
Josh Lee Avatar answered Sep 21 '22 02:09

Josh Lee