Fix docs, allow `/` to enable filter inside bookmarks

This commit is contained in:
Arun Prakash Jana 2022-06-14 17:36:17 +05:30
parent 581e629c20
commit d898d174f5
No known key found for this signature in database
GPG Key ID: A75979F35C080412
2 changed files with 4 additions and 4 deletions

2
nnn.1
View File

@ -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

View File

@ -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"