diff --git a/sk/cli/claude.lua b/sk/cli/claude.lua index 638835d9..4db06253 100644 --- a/sk/cli/claude.lua +++ b/sk/cli/claude.lua @@ -14,8 +14,9 @@ return { local ret = Text.to_string(text) - -- transform line ranges to a format that Claude understands + -- transform line references to a format that Claude understands ret = ret:gsub("@([^@]-) :L(%d+)%-L(%d+)", "@%1#L%2-%3") + ret = ret:gsub("@([^@]-) :L(%d+)", "@%1#L%2") return ret end,