diff options
| author | 2019-03-09 21:30:16 +0530 | |
|---|---|---|
| committer | 2019-03-09 21:30:16 +0530 | |
| commit | 5f55bde14185de5988497f850e3e8997bbef507b (patch) | |
| tree | 129638f4558c7509fa4e1fc1cc8c6158f676ea57 /src | |
| parent | e0eea578458977ad4f816402052cd8073fec7859 (diff) | |
| download | nnn-5f55bde14185de5988497f850e3e8997bbef507b.tar.gz | |
A more prominent current indicator
Diffstat (limited to 'src')
| -rw-r--r-- | src/nnn.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 '/' |