Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ end
---Prompt the user for a rejection reason
---@param callback function
local function get_rejection_reason(callback)
ui_utils.input({ prompt = "Rejection reason" }, function(input)
ui_utils.input({ prompt = "Rejection reason: " }, function(input)
callback(input or "")
end)
end
Expand Down
2 changes: 1 addition & 1 deletion lua/codecompanion/interactions/chat/tools/orchestrator.lua
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ function Orchestrator:setup_next_tool(input)
keymap = keys.reject,
label = labels.reject,
callback = function()
ui_utils.input({ prompt = fmt("Reason for rejecting `%s`", self.tool.name) }, function(i)
ui_utils.input({ prompt = fmt("Reason for rejecting `%s`: ", self.tool.name) }, function(i)
self.output.rejected(cmd, { reason = i })
self:setup_next_tool()
end)
Expand Down
Loading