aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-01-17 20:59:30 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-01-17 20:59:30 +0530
commitbf6419d6afcfb80139e15c4d5fdd41faa0d6584e (patch)
tree6a44163627c2c09e07b513e40c15973e6f088432
parent63f5abd0543b8ac3ce224f4d82593fb4f227dc30 (diff)
downloadnnn-bf6419d6afcfb80139e15c4d5fdd41faa0d6584e.tar.gz
Use a concise help
-rw-r--r--README.md16
-rw-r--r--src/nnn.c16
2 files changed, 16 insertions, 16 deletions
diff --git a/README.md b/README.md
index 15faa47..ef2c310 100644
--- a/README.md
+++ b/README.md
@@ -208,15 +208,15 @@ positional args:
PATH start dir [default: current dir]
optional args:
- -b key bookmark key to open
+ -b key open bookmark key
-C disable directory color
- -e use exiftool instead of mediainfo
- -i start in navigate-as-you-type mode
- -l start in light mode
- -p file copy selection to file (stdout if '-')
- -S start in disk usage analyser mode
- -v show program version
- -h show this help
+ -e use exiftool for media info
+ -i nav-as-you-type mode
+ -l light mode
+ -p file selection file (stdout if '-')
+ -S disk usage mode
+ -v show version
+ -h show help
```
`>` indicates the currently selected entry in `nnn`.
diff --git a/src/nnn.c b/src/nnn.c
index a5d59f0..fd80ab7 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -3602,15 +3602,15 @@ static void usage(void)
"positional args:\n"
" PATH start dir [default: current dir]\n\n"
"optional args:\n"
- " -b key bookmark key to open\n"
+ " -b key open bookmark key\n"
" -C disable directory color\n"
- " -e use exiftool instead of mediainfo\n"
- " -i start in navigate-as-you-type mode\n"
- " -l start in light mode\n"
- " -p file copy selection to file (stdout if '-')\n"
- " -S start in disk usage analyser mode\n"
- " -v show program version\n"
- " -h show this help\n\n"
+ " -e use exiftool for media info\n"
+ " -i nav-as-you-type mode\n"
+ " -l light mode\n"
+ " -p file selection file (stdout if '-')\n"
+ " -S disk usage mode\n"
+ " -v show version\n"
+ " -h show help\n\n"
"Version: %s\n%s\n", VERSION, GENERAL_INFO);
}