Skip to content

Commit

Permalink
dont print that
Browse files Browse the repository at this point in the history
  • Loading branch information
pablopunk committed May 23, 2024
1 parent c86cea9 commit 2808b21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/unclutter/tabline.lua
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ end
function tabline.next()
local buffers = tabline.list()
if buffers == nil or #buffers < 2 then
print "No more buffers"
-- print "No more buffers"
return
end
local current = buffer.current()
Expand All @@ -245,7 +245,7 @@ end
function tabline.prev()
local buffers = tabline.list()
if buffers == nil or #buffers < 2 then
print "No more buffers"
-- print "No more buffers"
return
end
local current = buffer.current()
Expand Down

0 comments on commit 2808b21

Please sign in to comment.