akinsho / akinsho/bufferline.nvim

[Feature Request]: Expose next_item API

オープン
#1,032 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る
enhancement
主要言語
Lua
スター
4.4k
フォーク
240
PR マージ指標
30日以内にマージされた PR はありません

説明

### What?

Expose next_item api, so as user could get a next buffer a potential call of cycle in a given direction or BufferLineCyclePrev cmd move to.

### Why?

In order to easier integrate plugins such as bufdel.
At the moment a user is required to call a private API (I guess so) and duplicate a part of cycle command, e.g.

```lua
{
"ojroques/nvim-bufdel",
opts = {
next = function()
-- TODO: if it's first then next, otherwise prev
local state = require("bufferline.lazy").require("bufferline.state")
local index = require("bufferline.commands").get_current_element_index(state)
if not index then
return
end

local next_index = index - 1

if next_index <= 0 then
next_index = #state.components
end

local item = state.components[next_index]
if not item then
return vim.notify("This " .. item.type .. " does not exist", vim.log.levels.ERROR)
end
return item.id
end,
quit = true,
},
},
```

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。