is there any way to move between lines by first letter in vim as we usually did by using the "f+letter" in the current line, Example:
din (tuple_hash_ack_data),
wr_en (tuple_hash_ack_wr),
dout (ack_fifo_data),
rd_en (ack_fifo_rd),
empty (ack_fifo_empty),
data_count (tuple_hash_count),
almost_full (tuple_hash_almost_full)
At first the cursor is stop at the first line:
din (tuple_hash_ack_data),
I want to jump to the line:
almost_full (tuple_hash_almost_full)
I want to type something like "fa", is it possible?
/^a? – adamdunson Jan 15 at 3:51