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
#include
Use a mark:
ma
marks the spot (before the gg)
gg
`a
brings you back.