mirror of
https://github.com/jarun/nnn.git
synced 2024-11-01 00:47:18 +00:00
Fix docs, allow /
to enable filter inside bookmarks
This commit is contained in:
parent
581e629c20
commit
d898d174f5
2
nnn.1
2
nnn.1
|
@ -48,7 +48,7 @@ supports the following options:
|
|||
auto-setup temporary NNN_FIFO (described in ENVIRONMENT section)
|
||||
.Pp
|
||||
.Fl A
|
||||
disable directory auto-enter in type-to-nav mode
|
||||
disable directory auto-enter on unique filter match
|
||||
.Pp
|
||||
.Fl "b key"
|
||||
specify bookmark key to open
|
||||
|
|
|
@ -7143,10 +7143,10 @@ nochange:
|
|||
goto nochange;
|
||||
}
|
||||
|
||||
if (strcmp(path, newpath) == 0)
|
||||
break;
|
||||
if (g_state.selbm == 1) /* Allow filtering in bookmarks directory */
|
||||
presel = FILTER;
|
||||
if (strcmp(path, newpath) == 0)
|
||||
break;
|
||||
}
|
||||
|
||||
/* In list mode, retain the last file name to highlight it, if possible */
|
||||
|
@ -8163,7 +8163,7 @@ static void usage(void)
|
|||
#ifndef NOFIFO
|
||||
" -a auto NNN_FIFO\n"
|
||||
#endif
|
||||
" -A disable dir auto-enter\n"
|
||||
" -A no dir auto-enter during filter\n"
|
||||
" -b key open bookmark key (trumps -s/S)\n"
|
||||
" -c cli-only NNN_OPENER (trumps -e)\n"
|
||||
" -C 8-color scheme\n"
|
||||
|
|
Loading…
Reference in a new issue