Make find-edit case insensitive

This commit is contained in:
Talia 2023-09-12 11:49:12 +02:00
parent b99366dbbe
commit c3b5d1b524
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ if [ -f "$1" ]
then
$EDITOR $1
else
file=$(sh -c "find $root $ignore -type f" | fzf -m -1 -q "$*")
file=$(sh -c "find $root $ignore -type f" | fzf -i -m -1 -q "$*")
if [ "$?" -eq 0 ]
then
echo "$file" | xargs -d '\n' $EDITOR