]> Sergey Matveev's repositories - nnn.git/commitdiff
Users understand 'DIR' easier then 'cwd'
authorArun Prakash Jana <engineerarun@gmail.com>
Sun, 24 Dec 2017 09:53:33 +0000 (15:23 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Sun, 24 Dec 2017 09:53:33 +0000 (15:23 +0530)
nnn.c

diff --git a/nnn.c b/nnn.c
index 82a944c7bbc48a3e71ddb8c9b0e520fade3285a2..bf93738a0c05dfd8ec4650915f1f8069f99def1c 100644 (file)
--- 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)