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

How do you unload a buffer while keeping it in the list?

Answer

:bunload

Explanation

Use :bunload or :bun to unload the current buffer from memory while keeping it in the buffer list. It shows as u in :ls.

Next

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