From 3d6777920a325477ab1d662aaf0c4125c76127fd Mon Sep 17 00:00:00 2001 From: KlzXS Date: Tue, 13 Feb 2024 18:49:02 +0100 Subject: [PATCH] Add -- to mvg and cpg which were missed --- src/nnn.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nnn.c b/src/nnn.c index 850c9b64..575e931f 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -741,8 +741,8 @@ static const char * const envs[] = { #define T_CHANGE 1 #define T_MOD 2 -#define PROGRESS_CP "cpg -giRp" -#define PROGRESS_MV "mvg -gi" +#define PROGRESS_CP "cpg -giRp --" +#define PROGRESS_MV "mvg -gi --" static char cp[sizeof PROGRESS_CP] = "cp -iRp --"; static char mv[sizeof PROGRESS_MV] = "mv -i --";