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
5 changes: 5 additions & 0 deletions .changeset/fix-mac-exit-message.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"kilo-code": patch
---

Fixed exit prompt showing "Cmd+C" instead of "Ctrl+C" on Mac. Ctrl+C is the universal terminal interrupt signal on all platforms.
2 changes: 1 addition & 1 deletion cli/src/ui/components/StatusIndicator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const StatusIndicator: React.FC<StatusIndicatorProps> = ({ disabled = fal
const isStreaming = useAtomValue(isStreamingAtom)
const hasResumeTask = useAtomValue(hasResumeTaskAtom)
const exitPromptVisible = useAtomValue(exitPromptVisibleAtom)
const exitModifierKey = process.platform === "darwin" ? "Cmd" : "Ctrl"
const exitModifierKey = "Ctrl" // Ctrl+C is the universal terminal interrupt signal on all platforms

// Don't render if no hotkeys to show or disabled
if (!shouldShow || disabled) {
Expand Down