We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a071dc1 commit 5ef69faCopy full SHA for 5ef69fa
lua/treewalker/targets.lua
@@ -120,7 +120,9 @@ function M.down()
120
candidate = coincident(candidate)
121
122
if cursor_pos[1] == 115 then
123
- print("DEBUG: targets.down() - candidate: " .. (candidate and candidate:type() or "nil") .. ", row: " .. (candidate_row or "nil"))
+ local cand = candidate and candidate:type() or "nil"
124
+ local row = candidate_row or "nil"
125
+ print("DEBUG: targets.down() - candidate: " .. cand .. ", row: " .. row)
126
end
127
128
return candidate, candidate_row
0 commit comments