Change default CWD formatting - noice - small file browser (mirror / fork from … | |
git clone git://git.codemadness.org/noice | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit bc82f25a1ea548073d65db22961cc2d7bcf9e35b | |
parent 5d920bf5850b8f117760d0e97a5531891b3227bd | |
Author: sin <[email protected]> | |
Date: Wed, 28 Aug 2019 13:28:18 +0100 | |
Change default CWD formatting | |
No need for a prefix, it is obvious that the string is referring to | |
the current working directory. | |
Diffstat: | |
M noice.c | 2 +- | |
M noiceconf.def.h | 2 +- | |
2 files changed, 2 insertions(+), 2 deletions(-) | |
--- | |
diff --git a/noice.c b/noice.c | |
@@ -77,7 +77,7 @@ int idle; | |
/* | |
* Layout: | |
* .--------- | |
- * | cwd: /mnt/path | |
+ * | /mnt/path | |
* | | |
* | file0 | |
* | file1 | |
diff --git a/noiceconf.def.h b/noiceconf.def.h | |
@@ -1,5 +1,5 @@ | |
/* See LICENSE file for copyright and license details. */ | |
-#define CWD "cwd: " | |
+#define CWD "" | |
#define CURSR " > " | |
#define EMPTY " " | |