MCPcopy Create free account
hub / github.com/codeaashu/claude-code / handleResume

Function handleResume

src/screens/REPL.tsx:4128–4132  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

4126 process.stdout.write(`\nClaude Code has been suspended. Run \`fg\` to bring Claude Code back.\nNote: ctrl + z now suspends Claude Code, ctrl + _ undoes input.\n`);
4127 };
4128 const handleResume = () => {
4129 // Force complete component tree replacement instead of terminal clear
4130 // Ink now handles line count reset internally on SIGCONT
4131 setRemountKey(prev => prev + 1);
4132 };
4133 internal_eventEmitter?.on('suspend', handleSuspend);
4134 internal_eventEmitter?.on('resume', handleResume);
4135 return () => {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected