bufjump.nvim icon indicating copy to clipboard operation
bufjump.nvim copied to clipboard

A neovim plugin that jump to previous and next buffer of the jumplist.

Results 2 bufjump.nvim issues
Sort by recently updated
recently updated
newest added

To show how it work, current jump functions can be implmented in a more clear way: ```lua M.backward = function() M.backward_cond(function(from_bufnr, to_bufnr) return from_bufnr ~= to_bufnr and vim.api.nvim_buf_is_valid(to_bufnr) end) end...

on_success function passed by the user seems to be ignored in the setup (example from readme).