This commit is contained in:
Arun Prakash Jana 2019-10-02 23:04:56 +05:30
parent 67c33a5e80
commit 5f4046b63d
No known key found for this signature in database
GPG key ID: A75979F35C080412
3 changed files with 16 additions and 5 deletions

View file

@ -168,6 +168,7 @@ positional args:
optional args: optional args:
-a use access time -a use access time
-b key open bookmark key -b key open bookmark key
-c cli-only opener
-d detail mode -d detail mode
-f run filter as cmd on prompt key -f run filter as cmd on prompt key
-H show hidden files -H show hidden files

3
nnn.1
View file

@ -44,6 +44,9 @@ supports the following options:
.Fl "b key" .Fl "b key"
specify bookmark key to open specify bookmark key to open
.Pp .Pp
.Fl c
opener opens files in cli utilities only
.Pp
.Fl d .Fl d
detail mode detail mode
.Pp .Pp

View file

@ -218,7 +218,7 @@ typedef struct {
uint selmode : 1; /* Set when selecting files */ uint selmode : 1; /* Set when selecting files */
uint showdetail : 1; /* Clear to show fewer file info */ uint showdetail : 1; /* Clear to show fewer file info */
uint ctxactive : 1; /* Context active or not */ uint ctxactive : 1; /* Context active or not */
uint reserved : 6; uint reserved : 5;
/* The following settings are global */ /* The following settings are global */
uint curctx : 2; /* Current context number */ uint curctx : 2; /* Current context number */
uint dircolor : 1; /* Current status of dir color */ uint dircolor : 1; /* Current status of dir color */
@ -234,6 +234,7 @@ typedef struct {
uint filtercmd : 1; /* Run filter as command on no match */ uint filtercmd : 1; /* Run filter as command on no match */
uint trash : 1; /* Move removed files to trash */ uint trash : 1; /* Move removed files to trash */
uint mtime : 1; /* Use modification time (else access time) */ uint mtime : 1; /* Use modification time (else access time) */
uint cliopener : 1; /* All-CLI app opener */
} settings; } settings;
/* Contexts or workspaces */ /* Contexts or workspaces */
@ -275,6 +276,7 @@ static settings cfg = {
0, /* filtercmd */ 0, /* filtercmd */
0, /* trash */ 0, /* trash */
1, /* mtime */ 1, /* mtime */
0, /* cliopener */
}; };
static context g_ctx[CTX_MAX] __attribute__ ((aligned)); static context g_ctx[CTX_MAX] __attribute__ ((aligned));
@ -3406,6 +3408,7 @@ static void browse(char *ipath)
char mark[PATH_MAX] __attribute__ ((aligned)); char mark[PATH_MAX] __attribute__ ((aligned));
char rundir[PATH_MAX] __attribute__ ((aligned)); char rundir[PATH_MAX] __attribute__ ((aligned));
char runfile[NAME_MAX + 1] __attribute__ ((aligned)); char runfile[NAME_MAX + 1] __attribute__ ((aligned));
uchar opener_flags = (cfg.cliopener ? F_CLI : (F_NOTRACE | F_NOWAIT));
int r = -1, fd, presel, selstartid = 0, selendid = 0, onscreen; int r = -1, fd, presel, selstartid = 0, selendid = 0, onscreen;
enum action sel; enum action sel;
bool dir_changed = FALSE, rangesel = FALSE; bool dir_changed = FALSE, rangesel = FALSE;
@ -3694,7 +3697,7 @@ nochange:
} }
/* Invoke desktop opener as last resort */ /* Invoke desktop opener as last resort */
spawn(opener, newpath, NULL, NULL, F_NOTRACE | F_NOWAIT); spawn(opener, newpath, NULL, NULL, opener_flags);
continue; continue;
} }
default: default:
@ -4608,6 +4611,7 @@ static void usage(void)
"optional args:\n" "optional args:\n"
" -a use access time\n" " -a use access time\n"
" -b key open bookmark key\n" " -b key open bookmark key\n"
" -c cli-only opener\n"
" -d detail mode\n" " -d detail mode\n"
" -f run filter as cmd on prompt key\n" " -f run filter as cmd on prompt key\n"
" -H show hidden files\n" " -H show hidden files\n"
@ -4754,7 +4758,7 @@ int main(int argc, char *argv[])
bool progress = FALSE; bool progress = FALSE;
#endif #endif
while ((opt = getopt(argc, argv, "HSiab:dfnop:rstvh")) != -1) { while ((opt = getopt(argc, argv, "HSiab:cdfnop:rstvh")) != -1) {
switch (opt) { switch (opt) {
case 'S': case 'S':
cfg.blkorder = 1; cfg.blkorder = 1;
@ -4773,6 +4777,9 @@ int main(int argc, char *argv[])
case 'b': case 'b':
arg = optarg; arg = optarg;
break; break;
case 'c':
cfg.cliopener = 1;
break;
case 'f': case 'f':
cfg.filtercmd = 1; cfg.filtercmd = 1;
break; break;
@ -4920,8 +4927,8 @@ int main(int argc, char *argv[])
} }
} }
/* Edit text in EDITOR, if opted */ /* Edit text in EDITOR if opted (and opener is not all-CLI) */
if (xgetenv_set(env_cfg[NNN_USE_EDITOR])) if (!cfg.cliopener && xgetenv_set(env_cfg[NNN_USE_EDITOR]))
cfg.useeditor = 1; cfg.useeditor = 1;
/* Get VISUAL/EDITOR */ /* Get VISUAL/EDITOR */