vimtricks.wiki Concise Vim tricks, one at a time.

How do you cycle between next and previous buffers?

Answer

:bn and :bp

Explanation

Use :bn (bnext) to go to the next buffer and :bp (bprevious) to go to the previous one. Maps well to keyboard shortcuts.

Next

How do I visually select a double-quoted string including the quotes themselves?