Remove debug statements.

This commit is contained in:
mwishoff 2023-12-06 08:42:17 -08:00
parent c82d3d5e3d
commit 9ff11a310a

View File

@ -171,7 +171,6 @@ end
function HarpoonList:next()
self._index = self._index + 1
print(self._index)
if self._index > #self.items and self.config.harpoon_wrap then
self._index = 1
elseif self._index > #self.items and not self.config.harpoon_wrap then
@ -183,7 +182,6 @@ end
function HarpoonList:prev()
self._index = self._index - 1
print(self._index)
if self._index < 1 and self.config.harpoon_wrap then
self._index = #self.items
elseif self._index < 1 and not self.config.harpoon_wrap then