From e765a33335ce867cabc98525bea322654f4ca977 Mon Sep 17 00:00:00 2001 From: retrozinndev Date: Tue, 26 Aug 2025 17:21:24 -0300 Subject: [PATCH] :wrench: chore(app): print newline after string in cli's RemoteCaller --- src/app.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app.ts b/src/app.ts index 9ffae21..eb7abfe 100644 --- a/src/app.ts +++ b/src/app.ts @@ -227,12 +227,12 @@ you should use the socket in the XDG_RUNTIME_DIR/colorshell.sock for a faster re if(success) { handleArguments({ print_literal: (msg) => conn.outputStream.write_bytes( - encoder.encode(msg), + encoder.encode(`${msg}\n`), null ), // TODO: support writing to stderr(i don't know how to do that :sob:) printerr_literal: (msg) => conn.outputStream.write_bytes( - encoder.encode(msg), + encoder.encode(`${msg}\n`), null ) }, parsedArgs!);