1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00

Add Interactive Buffer List as a vim til.

This commit is contained in:
jbranchaud
2015-04-18 14:39:13 -05:00
parent a6f77f1018
commit 4082635be4
2 changed files with 14 additions and 0 deletions

View File

@@ -59,6 +59,7 @@ smart people at [Hashrocket](http://hashrocket.com/).
- [Generate and Edit Rails Migration](vim/generate-and-edit-rails-migration.md)
- [Head of File Name](vim/head-of-file-name.md)
- [Horizontal to Vertical and Back Again](vim/horizontal-to-vertical-and-back-again.md)
- [Interactive Buffer List](vim/interactive-buffer-list.md)
- [List All Buffers](vim/list-all-buffers.md)
- [Marks Across Vim Sessions](vim/marks-across-vim-sessions.md)
- [NETRW Listing Styles](vim/netrw-listing-styles.md)

View File

@@ -0,0 +1,13 @@
# Interactive Buffer List
The `:ls` command is a great way to see what buffers you current have open
during a vim session. However, if you are trying to find and open a specific
buffer it can be tedious to have to find it in the list and then enter a
whole different command to move to it (e.g. `:b 10`).
The [`bufexplorer`](https://github.com/jlanzarotta/bufexplorer) plugin gives
you quick access to an interactive buffer list. By using `<leader>bs` and
`<leader>bv` you can open horizontally and vertically split windows,
respectively, that allow you to navigate through and open specific buffers
from your buffer list. This is a simple plugin you can add to your workflow
that can make working with a lot of buffers a bit more efficient.