-
-
Notifications
You must be signed in to change notification settings - Fork 0
Plugin: History
PRIZ ;] edited this page Feb 10, 2025
·
6 revisions
The Rabbit tracks all buffers that the current window has visited, and orders them in order of most recent visit.
Again, this separates by window, so even in split screen, Rabbit will not conflate the two histories.
Also, when opening a new window, Rabbit will ask if you want to recover the history of the last window closed, just in case if you closed it mistakenly.
require("rabbit").setup({ ---@type Rabbit.Options
plugin_opts = { history = { opts = { ---@type Rabbit.Plugin.History.Options
ignore_unlisted = true,
}}},
})
field | type | default | description |
---|---|---|---|
ignore_unlisted |
bool | true | If true, this will not list unlisted buffers, like those from Oil.nvim |
2024-06-10.16-52-27.qsv.mp4
-
v3
- A few optimizations to take advantage of new features
-
v2
- You can now recover the history of the most recently closed window
- Added the
ignore_unlisted
option
-
v1
- Initial Release