From 96e3e8ecbfe5b36d4b321db590e214356d9bc352 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Sat, 20 Feb 2016 08:39:29 -0600 Subject: [PATCH] Add Deleting Buffers In BufExplorer as a vim til --- README.md | 1 + vim/deleting-buffers-in-bufexplorer.md | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 vim/deleting-buffers-in-bufexplorer.md diff --git a/README.md b/README.md index d8cba80..2b79b26 100644 --- a/README.md +++ b/README.md @@ -350,6 +350,7 @@ _341 TILs and counting..._ - [Creating Non-Existent Directories](vim/creating-non-existent-directories.md) - [Delete Every Other Line](vim/delete-every-other-line.md) - [Delete Lines That Match A Pattern](vim/delete-lines-that-match-a-pattern.md) +- [Deleting Buffers In BufExplorer](vim/deleting-buffers-in-bufexplorer.md) - [Deleting Directories Of Files From netrw](vim/deleting-directories-of-files-from-netrw.md) - [Difference Between :wq and :x](vim/difference-between-wq-and-x.md) - [Display Word Count Stats](vim/display-word-count-stats.md) diff --git a/vim/deleting-buffers-in-bufexplorer.md b/vim/deleting-buffers-in-bufexplorer.md new file mode 100644 index 0000000..c840634 --- /dev/null +++ b/vim/deleting-buffers-in-bufexplorer.md @@ -0,0 +1,17 @@ +# Deleting Buffers In BufExplorer + +The [BufExplorer](https://github.com/jlanzarotta/bufexplorer) plugin makes +it easy to browse and navigate to the various buffers open in a Vim session. +It is based on your buffer list. After a bit of coding, your buffer list can +start to get a bit out of control. There are surely going to be buffers that +you want to close out, *delete* if you will. + +Within the BufExplorer browser you can move your cursor onto a buffer and +delete it. + +To delete it by *unloading* the buffer (see `:h bd`), you can hit `d`. + +To delete it by *wiping out* the buffer (see `:h bw`), you can hit `D`. + +If you already have the plugin installed, see `:h bufexplorer` for more +details.