aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2017-12-24 15:23:33 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2017-12-24 15:23:33 +0530
commit8189411aef113562e4c388c2fa4e0f840fb8fcb5 (patch)
tree386c27365e205bfe70a09ebacb0f78ea1485c354
parentd9537e6d49121c9171f7a912944cfb89a04327f3 (diff)
downloadnnn-8189411aef113562e4c388c2fa4e0f840fb8fcb5.tar.gz
Users understand 'DIR' easier then 'cwd'
-rw-r--r--nnn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nnn.c b/nnn.c
index 82a944c..bf93738 100644
--- a/nnn.c
+++ b/nnn.c
@@ -3,7 +3,7 @@
/*
* Visual layout:
* .---------
- * | cwd: /mnt/path
+ * | DIR: /mnt/path
* |
* | file0
* | file1
@@ -148,7 +148,7 @@ disabledbg()
#define TOUPPER(ch) \
(((ch) >= 'a' && (ch) <= 'z') ? ((ch) - 'a' + 'A') : (ch))
#define MAX_CMD_LEN 5120
-#define CWD "cwd: "
+#define CWD "DIR: "
#define CURSR " > "
#define EMPTY " "
#define CURSYM(flag) (flag ? CURSR : EMPTY)