From 3c628fb54297d2880a22bc4557dd52876873c425 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Sat, 14 Nov 2015 13:09:58 -0600 Subject: [PATCH] Add some clarity to the latest post. --- vim/unloading-a-buffer.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vim/unloading-a-buffer.md b/vim/unloading-a-buffer.md index 612b4b3..8680f32 100644 --- a/vim/unloading-a-buffer.md +++ b/vim/unloading-a-buffer.md @@ -20,9 +20,9 @@ To unload some other buffer by buffer number, say buffer 10: :10bd ``` -Caveat: unloading a buffer marks it as *unlisted* in the buffer list, +Caveats: unloading a buffer marks it as *unlisted* in the buffer list, meaning it won't appear in your normal view of the buffer list. It should -also be noted that it does not remove it from the jump list or the global -mark list. +also be noted that it does not remove the buffer from the jump list or the +global mark list. See `:h :bd` for more details.