diff --git a/lua/harpoon/list.lua b/lua/harpoon/list.lua index 4d01385..8a9f211 100644 --- a/lua/harpoon/list.lua +++ b/lua/harpoon/list.lua @@ -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