mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 20:01:27 +00:00
Do not show quotes on ^K
This commit is contained in:
parent
1d067df0b5
commit
991ef57340
3
nnn.c
3
nnn.c
|
@ -2852,7 +2852,8 @@ nochange:
|
||||||
g_buf[r + 1] = '\0';
|
g_buf[r + 1] = '\0';
|
||||||
|
|
||||||
spawn(copier, g_buf, NULL, NULL, F_NONE);
|
spawn(copier, g_buf, NULL, NULL, F_NONE);
|
||||||
printmsg(g_buf);
|
g_buf[r] = '\0';
|
||||||
|
printmsg(g_buf + 1);
|
||||||
} else {
|
} else {
|
||||||
mkpath(path, dents[cur].name, newpath, PATH_MAX);
|
mkpath(path, dents[cur].name, newpath, PATH_MAX);
|
||||||
spawn(copier, newpath, NULL, NULL, F_NONE);
|
spawn(copier, newpath, NULL, NULL, F_NONE);
|
||||||
|
|
Loading…
Reference in a new issue