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 ?
Is it possible in vim to move forward with t and f (or in
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
What about
/word?It can be combined with operators just like anything else:
cursor at start, d/
highEnter:Bonus
Also, you might be interested in learning some of the ex mode commands like that:
Now enter
(Note:
<CR>denotes C-vC-m for the enter key (^M))Result:
The
/eflag achieves inclusive behaviour like withf; To get ’till behaviour instead:Result: