From bde59e81473f29944ef80ff98f6b2c88010b2df6 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Sun, 11 Jun 2023 22:12:32 +0800 Subject: fix(remote): restore previous --remote-expr output formatting (#23988) - Use tostring() as that's what print() uses internally. - Do not append trailing new line. --- src/nvim/main.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src') diff --git a/src/nvim/main.c b/src/nvim/main.c index 6a02aa3dae..6ab7391b05 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -967,7 +967,6 @@ static void remote_request(mparm_T *params, int remote_args, char *server_addr, os_exit(2); } os_msg(rvobj.data.dictionary.items[i].value.data.string.data); - os_msg("\n"); } else if (strequal(rvobj.data.dictionary.items[i].key.data, "tabbed")) { if (rvobj.data.dictionary.items[i].value.type != kObjectTypeBoolean) { os_errmsg("vim._cs_remote returned an unexpected type for 'tabbed'\n"); -- cgit