feat(cli): Standardize keyboard shortcut hints (#1092)

This commit is contained in:
N. Taylor Mullen
2025-06-15 23:21:58 -07:00
committed by GitHub
parent cc7459e403
commit 742caa5dd8
2 changed files with 4 additions and 4 deletions
@@ -49,12 +49,12 @@ export const ContextSummaryDisplay: React.FC<ContextSummaryDisplayProps> = ({
}
if (mcpText) {
summaryText += mcpText;
// Add Ctrl+T hint when MCP servers are available
// Add ctrl+t hint when MCP servers are available
if (mcpServers && Object.keys(mcpServers).length > 0) {
if (showToolDescriptions) {
summaryText += ' (Ctrl+T to hide descriptions)';
summaryText += ' (ctrl+t to toggle)';
} else {
summaryText += ' (Ctrl+T to view descriptions)';
summaryText += ' (ctrl+t to view)';
}
}
}