How do I view the list of positions I have jumped to in Vim?
:jumps
How it works Vim keeps a jump list that records your cursor position every time you make a jump.
7 results for "ctrl i jump list"
:jumps
How it works Vim keeps a jump list that records your cursor position every time you make a jump.
<C-o>
The (Ctrl+o) command jumps the cursor backward through the jump list, returning you to previous cursor positions.
<C-i>
Every time you make a "jump" — using G, /, %, :tag, , or similar commands — Vim records your position in the jump list.
:bprev
The :bprev (or :bp for short) command switches to the previous buffer in Vim's buffer list.
: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.