How to I move to the next instance after using 'f' #13038
-
In vim, when i do 'f' to find a character, I can then use the ';' and ',' to move back and forth to the next/previous selections. I've not yet been able to figure out how to do this in helix leading to a lot of using 'w' followed by 'l' to get to the location instead. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can repeat the f-motion with Since |
Beta Was this translation helpful? Give feedback.
You can repeat the f-motion with
<A-.>
. To go backwards I believe you first have toF
, don't know if there is an analog to vim's,
and;
.Since
f
andF
select everything on its way, I don't think they are well suited for general navigation, I really favorgw
for its consistency.