ignore: remove log

This commit is contained in:
Dax Raad 2025-07-20 19:08:19 -04:00
parent adc8b90e0f
commit 93446df335

View file

@ -73,7 +73,6 @@ func (s selection) coords(offset int) selection {
// selecting backwards same line
if s.startY == s.endY && s.startX >= s.endX {
slog.Info("selecting backwards same line", "start", s.startX, "end", s.endX)
return selection{
startY: s.startY - offset,
startX: max(0, s.endX-1),