Make find-edit case insensitive
This commit is contained in:
parent
b99366dbbe
commit
c3b5d1b524
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue