Merge pull request #2770 from chiga0/feat/add-verbose-mode-switcher

feat: to #2767, support verbose and compact mode swither with ctrl-o
This commit is contained in:
tanzhenxin 2026-04-07 15:48:41 +08:00 committed by GitHub
commit b632541629
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
24 changed files with 438 additions and 112 deletions

View file

@ -582,6 +582,16 @@ const SETTINGS_SCHEMA = {
description: 'The last time the feedback dialog was shown.',
showInDialog: false,
},
verboseMode: {
type: 'boolean',
label: 'Verbose Mode',
category: 'UI',
requiresRestart: false,
default: true,
description:
'Show full tool output and thinking in verbose mode (toggle with Ctrl+O).',
showInDialog: false,
},
},
},