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

How do you switch to a buffer by its number?

Answer

:b3

Explanation

Use :b followed by the buffer number. :b3 switches to buffer 3. Use :ls first to see buffer numbers.

Next

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