Skip to content

Commit 261a72b

Browse files
chore: formatting
1 parent 5726c4e commit 261a72b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lua/bufferline/utils/init.lua

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,9 @@ function M.notify(msg, level, opts)
176176
level = vim.log.levels[level:upper()]
177177
if type(msg) == "table" then msg = table.concat(msg, "\n") end
178178
local nopts = { title = "Bufferline" }
179-
if opts.once then return vim.schedule(function() vim.notify_once(msg, level, nopts) end) end
179+
if opts.once then
180+
return vim.schedule(function() vim.notify_once(msg, level, nopts) end)
181+
end
180182
vim.schedule(function() vim.notify(msg, level, nopts) end)
181183
end
182184

0 commit comments

Comments
 (0)