From 0fd0851e1a05d34a714296c86df71197f8f940f8 Mon Sep 17 00:00:00 2001 From: JAYADITYA <96861162+JayadityaGit@users.noreply.github.com> Date: Fri, 10 Apr 2026 21:23:17 +0530 Subject: [PATCH] docs(cli): updates f12 description to be more precise (#15816) --- docs/reference/keyboard-shortcuts.md | 2 +- packages/cli/src/ui/key/keyBindings.ts | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/reference/keyboard-shortcuts.md b/docs/reference/keyboard-shortcuts.md index 4c2d677513..783de916fa 100644 --- a/docs/reference/keyboard-shortcuts.md +++ b/docs/reference/keyboard-shortcuts.md @@ -99,7 +99,7 @@ available combinations. | Command | Action | Keys | | ----------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------ | -| `app.showErrorDetails` | Toggle detailed error information. | `F12` | +| `app.showErrorDetails` | Toggle the debug console for detailed error information. | `F12` | | `app.showFullTodos` | Toggle the full TODO list. | `Ctrl+T` | | `app.showIdeContextDetail` | Show IDE context details. | `F4` | | `app.toggleMarkdown` | Toggle Markdown rendering. | `Alt+M` | diff --git a/packages/cli/src/ui/key/keyBindings.ts b/packages/cli/src/ui/key/keyBindings.ts index e7f03765d0..e3fbcd8262 100644 --- a/packages/cli/src/ui/key/keyBindings.ts +++ b/packages/cli/src/ui/key/keyBindings.ts @@ -637,7 +637,8 @@ export const commandDescriptions: Readonly> = { [Command.PASTE_CLIPBOARD]: 'Paste from the clipboard.', // App Controls - [Command.SHOW_ERROR_DETAILS]: 'Toggle detailed error information.', + [Command.SHOW_ERROR_DETAILS]: + 'Toggle the debug console for detailed error information.', [Command.SHOW_FULL_TODOS]: 'Toggle the full TODO list.', [Command.SHOW_IDE_CONTEXT_DETAIL]: 'Show IDE context details.', [Command.TOGGLE_MARKDOWN]: 'Toggle Markdown rendering.',