feat(shell): Standardize pager to 'cat' for shell execution by model (#13878)

This commit is contained in:
Gal Zahavi
2025-11-26 17:23:31 -08:00
committed by GitHub
parent 69188c8538
commit b9dc8eb14d
3 changed files with 7 additions and 5 deletions

View File

@@ -221,6 +221,7 @@ export class ShellExecutionService {
GEMINI_CLI: '1',
TERM: 'xterm-256color',
PAGER: 'cat',
GIT_PAGER: 'cat',
},
});
@@ -434,6 +435,7 @@ export class ShellExecutionService {
GEMINI_CLI: '1',
TERM: 'xterm-256color',
PAGER: shellExecutionConfig.pager ?? 'cat',
GIT_PAGER: shellExecutionConfig.pager ?? 'cat',
},
handleFlowControl: true,
});