Skip to content

Commit

Permalink
chore: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Apr 15, 2023
1 parent 5bf8f76 commit 2afd9c3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lua/bufferline/groups.lua
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,9 @@ local function restore_pinned_buffers()
if not pinned then return end
local manual_groupings = vim.split(pinned, ",") or {}
for _, path in ipairs(manual_groupings) do
local buf_id = fn.bufnr(path --[[@as integer]])
local buf_id = fn.bufnr(
path --[[@as integer]]
)
if buf_id ~= -1 then
set_manual_group(buf_id, PINNED_ID)
persist_pinned_buffers()
Expand Down

0 comments on commit 2afd9c3

Please sign in to comment.