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:
13
vim/interactive-buffer-list.md
Normal file
13
vim/interactive-buffer-list.md
Normal 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.
|
||||
Reference in New Issue
Block a user