ton / vim-bufsurf

Vim plugin that enables surfing through buffers based on viewing history per window

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vim-bufsurf

This plugin enables surfing through buffers based on a viewing history per window.

When editing multiple files oftentimes it would be nice to be able to go back and forth between the last edited files, just like a web browser allows the user to navigate web pages forward and backward in history. The standard :bn(ext) and :bp(revious) Vim commands allow to switch between next and previous buffers respectively, but they do no take into account the history of the last used files. Instead, they use the order in which the files were opened, which can cause confusion in case the user expects to navigate forward and backwards in history. For example, in case the user opened the files A, B, and C in the following order:

  1. A
  2. B
  3. C

and the navigation history would be:

  1. A
  2. B
  3. C
  4. B

then :bp(revious) in the last buffer (containing B) would open up buffer A, where C is preferable. This plugin supplies the user with the commands :BufSurfForward and :BufSurfBack to navigate buffers forwards and backwards according to the navigation history.

It also provides <Plug> mappings:

nmap ]b <Plug>(buf-surf-forward)
nmap [b <Plug>(buf-surf-back)

About

Vim plugin that enables surfing through buffers based on viewing history per window

License:BSD 2-Clause "Simplified" License


Languages

Language:Vim Script 100.0%