We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 359ec61 commit e941311Copy full SHA for e941311
cli/src/index.tsx
@@ -87,6 +87,12 @@ type ParsedArgs = {
87
function parseArgs(): ParsedArgs {
88
const program = new Command()
89
90
+ // Send all commander output (including errors) to stdout so it shows up in the TUI buffer
91
+ program.configureOutput({
92
+ writeOut: (str: string) => process.stdout.write(str),
93
+ writeErr: (str: string) => process.stdout.write(str),
94
+ })
95
+
96
program
97
.name('codebuff')
98
.description('Codebuff CLI - AI-powered coding assistant')
0 commit comments