- Bookmarks; pin and visit a directory
- Familiar, easy shortcuts (arrows, <kbd>~</kbd>, <kbd>-</kbd>, <kbd>@</kbd>)
- Sorting
+ - Ordered pure numeric names by default (visit _/proc_)
- Case-insensitive version (_aka_ natural) sort
- Sort by file name, modification time, size
- Search
#### Cmdline options
```
-usage: nnn [-b key] [-d] [-e] [-i] [-l] [-p file]
- [-s] [-S] [-v] [-w] [-h] [PATH]
+usage: nnn [-b key] [-d] [-e] [-i] [-l] [-n]
+ [-p file] [-s] [-S] [-v] [-w] [-h] [PATH]
The missing terminal file manager for X.
-e use exiftool for media info
-i nav-as-you-type mode
-l light mode
+ -n version sort
-p file selection file (stdout if '-')
-s string filters [default: regex]
-S du mode
complete -c nnn -s h -d 'show this help and exit'
complete -c nnn -s i -d 'start in navigate-as-you-type mode'
complete -c nnn -s l -d 'start in light mode (fewer details)'
+complete -c nnn -s n -d 'use version compare to sort files'
complete -c nnn -s p -r -d 'copy selection to file'
complete -c nnn -s s -d 'use substring match for filters'
complete -c nnn -s S -d 'start in disk usage analyzer mode'
'(-h)-h[show this help and exit]'
'(-i)-i[start in navigate-as-you-type mode]'
'(-l)-l[start in light mode (fewer details)]'
+ '(-n)-n[use version compare to sort files]'
'(-p)-p[copy selection to file]:file name'
'(-s)-s[use substring match for filters]'
'(-S)-S[start in disk usage analyzer mode]'
.Op Ar -e
.Op Ar -i
.Op Ar -l
+.Op Ar -n
.Op Ar -p file
.Op Ar -s
.Op Ar -S
.Fl l
start in light mode (fewer details)
.Pp
+.Fl n
+ use case-insensitive version compare to sort files
+.Pp
.Fl "p file"
copy (or \fIpick\fR) selection to file, or stdout if file='-'
.Pp
return ret;
}
-#if 0
static int digit_compare(const char *a, const char *b)
{
while (*a && *b && *a == *b)
return strcoll(s1, s2);
}
-#endif
/*
* Version comparison
}
}
+static int (*cmpfn)(const char * const s1, const char * const s2) = &xstricmp;
+
/* Return the integer value of a char representing HEX */
static char xchartohex(char c)
{
return -1;
}
- return xstrverscasecmp(pa->name, pb->name);
+ return cmpfn(pa->name, pb->name);
}
/*
static void usage(void)
{
fprintf(stdout,
- "%s: nnn [-b key] [-d] [-e] [-i] [-l] [-p file]\n"
- " [-s] [-S] [-v] [-w] [-h] [PATH]\n\n"
+ "%s: nnn [-b key] [-d] [-e] [-i] [-l] [-n]\n"
+ " [-p file] [-s] [-S] [-v] [-w] [-h] [PATH]\n\n"
"The missing terminal file manager for X.\n\n"
"positional args:\n"
" PATH start dir [default: current dir]\n\n"
" -e use exiftool for media info\n"
" -i nav-as-you-type mode\n"
" -l light mode\n"
+ " -n version sort\n"
" -p file selection file (stdout if '-')\n"
" -s string filters [default: regex]\n"
" -S du mode\n"
char *arg = NULL;
int opt;
- while ((opt = getopt(argc, argv, "Slib:dep:svwh")) != -1) {
+ while ((opt = getopt(argc, argv, "Slib:denp:svwh")) != -1) {
switch (opt) {
case 'S':
cfg.blkorder = 1;
case 'e':
cfg.metaviewer = EXIFTOOL;
break;
+ case 'n':
+ cmpfn = &xstrverscasecmp;
+ break;
case 'p':
cfg.picker = 1;
if (optarg[0] == '-' && optarg[1] == '\0')