Insert after jump expected behaviour #3500
Answered
by
the-mikedavis
willparsons
asked this question in
Q&A
-
After using an action like Is this expected behaviour? |
Beta Was this translation helpful? Give feedback.
Answered by
the-mikedavis
Aug 21, 2022
Replies: 1 comment
-
Yep that's the expected behavior: i inserts at the beginning of the selection. w/f/t and others create a selection that starts at the current cursor and extends to the word boundary (w) or typed character (f/t). You most likely want to append with a which inserts at the end of the selection and extends the selection to include the inserted text. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
willparsons
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yep that's the expected behavior: i inserts at the beginning of the selection. w/f/t and others create a selection that starts at the current cursor and extends to the word boundary (w) or typed character (f/t). You most likely want to append with a which inserts at the end of the selection and extends the selection to include the inserted text.