I was wondering if there's a way to return to the previous line you were on in Vim.
Say, for example, I'm writing C code and I just wanted to add an #include
at the top of the page: I press gg
and go to the top, add the #include
, and then I want to return to the line I left off of.
Is this possible in Vim?
Go back to previous line hotkey : r/vscode.
If we are in the vim editor, then simply do this, “Press the ENTER key, write the Line number, and press Shift+ g”: Again the output is the same.
Yes. You can use ``
in order to jump between the last two positions.
Otherwise, Ctrl+O and Ctrl+I can help you. See :help CTRL-I
.
Use a mark:
ma
marks the spot (before the gg
)
`a
brings you back.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With