Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lua/claudecode/selection.lua
Original file line number Diff line number Diff line change
Expand Up @@ -916,7 +916,7 @@ function M.send_at_mention_for_visual_selection(line1, line2)
-- If range parameters are provided, use them (for :'<,'> commands)
if line1 and line2 then
sel_to_send = M.get_range_selection(line1, line2)
if not sel_to_send or sel_to_send.selection.isEmpty then
if not sel_to_send then
logger.warn("selection", "Invalid range selection to send as at-mention.")
return false
end
Expand Down