MCPcopy Index your code
hub / github.com/codeaashu/claude-code / getBaseRenderOptions

Function getBaseRenderOptions

src/utils/renderOptions.ts:68–77  ·  view source on GitHub ↗
(
  exitOnCtrlC: boolean = false,
)

Source from the content-addressed store, hash-verified

66 * @param exitOnCtrlC - Whether to exit on Ctrl+C (usually false for dialogs)
67 */
68export function getBaseRenderOptions(
69 exitOnCtrlC: boolean = false,
70): RenderOptions {
71 const stdin = getStdinOverride()
72 const options: RenderOptions = { exitOnCtrlC }
73 if (stdin) {
74 options.stdin = stdin
75 }
76 return options
77}
78

Callers 4

getRenderContextFunction · 0.85
runFunction · 0.85
showInvalidConfigDialogFunction · 0.85

Calls 1

getStdinOverrideFunction · 0.85

Tested by

no test coverage detected