Skip to content

Commit

Permalink
Merge pull request #25 from pablopunk/dontprintthat
Browse files Browse the repository at this point in the history
don't print that
  • Loading branch information
pablopunk authored May 23, 2024
2 parents c86cea9 + 2808b21 commit 7ef06d5
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 7ef06d5

Please sign in to comment.