Remove search result buffering from project finder

This commit is contained in:
Talia 2025-02-03 11:11:57 +01:00
parent 7ce7a6e87f
commit e21060ea34

View file

@ -3,6 +3,6 @@
root=$1
shift 1
if [ -n "$*" ]
then find $root -type d -name .git | xargs dirname | fzf -1 -q "$*"
else find $root -type d -name .git | xargs dirname | fzf -1
then find $root -type d -name .git | xargs -L 1 dirname | fzf -1 -q "$*"
else find $root -type d -name .git | xargs -L 1 dirname | fzf -1
fi