Skip to content

Commit 5ef69fa

Browse files
committed
Simplified fix - minimal changes (Sun Nov 2 12:37:35 PST 2025)
1 parent a071dc1 commit 5ef69fa

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lua/treewalker/targets.lua

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,9 @@ function M.down()
120120
candidate = coincident(candidate)
121121

122122
if cursor_pos[1] == 115 then
123-
print("DEBUG: targets.down() - candidate: " .. (candidate and candidate:type() or "nil") .. ", row: " .. (candidate_row or "nil"))
123+
local cand = candidate and candidate:type() or "nil"
124+
local row = candidate_row or "nil"
125+
print("DEBUG: targets.down() - candidate: " .. cand .. ", row: " .. row)
124126
end
125127

126128
return candidate, candidate_row

0 commit comments

Comments
 (0)