From: Arun Prakash Jana Date: Mon, 29 Jan 2018 15:19:38 +0000 (+0530) Subject: Do not show quotes on ^K X-Git-Tag: v1.7~19 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=991ef573409514817c9fbad77eb4aadf01baff7c;p=nnn.git Do not show quotes on ^K --- diff --git a/nnn.c b/nnn.c index 9686fe9e..691902b8 100644 --- a/nnn.c +++ b/nnn.c @@ -2852,7 +2852,8 @@ nochange: g_buf[r + 1] = '\0'; spawn(copier, g_buf, NULL, NULL, F_NONE); - printmsg(g_buf); + g_buf[r] = '\0'; + printmsg(g_buf + 1); } else { mkpath(path, dents[cur].name, newpath, PATH_MAX); spawn(copier, newpath, NULL, NULL, F_NONE);