Returning to previous line with Vim

后端 未结 2 1222
醉话见心
醉话见心 2020-12-23 13:13

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

相关标签:
2条回答
  • 2020-12-23 13:36

    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.

    0 讨论(0)
  • 2020-12-23 13:56

    Use a mark:

    ma
    

    marks the spot (before the gg)

    `a
    

    brings you back.

    0 讨论(0)
提交回复
热议问题