I use these mappings:
{
"<C-h>",
function()
require("arrow.persist").previous()
end,
},
{
"<C-l>",
function()
require("arrow.persist").next()
end,
},
{
"<C-s>",
function()
require("arrow.persist").toggle()
end,
},
problem is, when I add bookmark using <C-s>, previous and next works as expected: cycling through bookmarks. Whereas when I add bookmark using save key in arrow ui, <C-h> and <C-l> only works when switching between 2 buffers, ignoring others: next only switches from 1st to 2nd bookmark, and previous only switches from 2nd to 1st bookmark.