Merge pull request #27 from Sketch98/bug1

fixed bug with search function. added double quotes to stop $ans from…
This commit is contained in:
dylan 2021-06-11 08:13:13 +00:00 committed by GitHub
commit 9a968b2c48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

6
shfm
View File

@ -137,7 +137,7 @@ list_print() {
mid=$((bottom / 4 < 5 ? 1 : bottom / 4))
case $# in
1) [ -e "$1" ] || set -- empty
1) [ -e "$1" ] || [ "$1" = 'no results' ] || set -- empty
esac
case $hist in
@ -357,9 +357,11 @@ main() {
/?)
prompt / r
# word splitting and globbing intentional
IFS=
# globbing intentional, word splitting is disabled.
# shellcheck disable=2086
set -- $ans*
unset IFS
case $1$# in
"$ans*1") set -- 'no results'