How do I jump forward through the jump list after going back with Ctrl-O?
<C-i>
Every time you make a "jump" — using G, /, %, :tag, , or similar commands — Vim records your position in the jump list.
9 results for "ctrl i jump list"
<C-i>
Every time you make a "jump" — using G, /, %, :tag, , or similar commands — Vim records your position in the jump list.
:jumps
How it works Vim keeps a jump list that records your cursor position every time you make a jump.
g<C-]>
When a symbol (function, class, variable) is defined in multiple places, CTRL-] blindly jumps to the first match.
<C-o>
The (Ctrl+o) command jumps the cursor backward through the jump list, returning you to previous cursor positions.
:bprev
The :bprev (or :bp for short) command switches to the previous buffer in Vim's buffer list.
[<C-d>
Vim's [ command jumps to the first definition of the macro or identifier under the cursor, searching from the beginning of the current file and through any file
:bnext
The :bnext (or :bn for short) command switches to the next buffer in Vim's buffer list.
:ls
The :ls command displays a list of all open buffers in Vim, showing their buffer number, status indicators, file name, and the line the cursor was last on.
:Buffers
The fzf.