From e140e34483b37a19012142a29bc891d4b2aaae26 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sat, 22 Jan 2022 21:06:57 +0530 Subject: [PATCH] Disable filterinfo if file details enabled --- src/nnn.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/nnn.c b/src/nnn.c index 6ea4437b..900ed00f 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -3165,12 +3165,13 @@ static void showfilterinfo(void) i = getorderstr(info); - snprintf(info + i, REGEX_MAX - i - 1, " %s [/], %s [:]", - (cfg.regex ? "reg" : "str"), - ((fnstrstr == &strcasestr) ? "ic" : "noic")); - if (cfg.fileinfo && ndents && get_output("file", "-b", pdents[cur].name, -1, FALSE, FALSE)) mvaddstr(xlines - 2, 2, g_buf); + else { + snprintf(info + i, REGEX_MAX - i - 1, " %s [/], %s [:]", + (cfg.regex ? "reg" : "str"), + ((fnstrstr == &strcasestr) ? "ic" : "noic")); + } mvaddstr(xlines - 2, xcols - xstrlen(info), info); }