From 5f55bde14185de5988497f850e3e8997bbef507b Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sat, 9 Mar 2019 21:30:16 +0530 Subject: [PATCH] A more prominent current indicator --- src/nnn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nnn.c b/src/nnn.c index 5392a7fd..6090eb75 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -171,7 +171,7 @@ disabledbg() #define TOUPPER(ch) \ (((ch) >= 'a' && (ch) <= 'z') ? ((ch) - 'a' + 'A') : (ch)) #define CMD_LEN_MAX (PATH_MAX + ((NAME_MAX + 1) << 1)) -#define CURSR " >" +#define CURSR ">>" #define EMPTY " " #define CURSYM(flag) ((flag) ? CURSR : EMPTY) #define FILTER '/'