This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

Display the session name in the exit message

Nathan Herald (Apr 6, 2026, 10:02 PM +0200) 699a44ae 4f7d628b

+2 -2
+2 -2
src/client.ts
··· 125 125 stdout.write(TERMINAL_SANITIZE + CURSOR_TO_BOTTOM); 126 126 } 127 127 if (follow) { 128 - stdout.write(`\r\n[session exited with code ${code}]\r\n`); 128 + stdout.write(`\r\n[${options.name} exited with code ${code}]\r\n`); 129 129 } 130 130 options.onExit?.(code); 131 131 return; ··· 402 402 exitCode = decodeExit(packet.payload); 403 403 exitHandled = true; 404 404 cleanExit(); 405 - stdout.write(TERMINAL_SANITIZE + CURSOR_TO_BOTTOM + `\r\n[session exited with code ${exitCode}]\r\n`); 405 + stdout.write(TERMINAL_SANITIZE + CURSOR_TO_BOTTOM + `\r\n[${options.name} exited with code ${exitCode}]\r\n`); 406 406 options.onExit?.(exitCode); 407 407 return; 408 408 }