Remove search result buffering from project finder
This commit is contained in:
parent
7ce7a6e87f
commit
e21060ea34
1 changed files with 2 additions and 2 deletions
|
@ -3,6 +3,6 @@
|
||||||
root=$1
|
root=$1
|
||||||
shift 1
|
shift 1
|
||||||
if [ -n "$*" ]
|
if [ -n "$*" ]
|
||||||
then find $root -type d -name .git | xargs dirname | fzf -1 -q "$*"
|
then find $root -type d -name .git | xargs -L 1 dirname | fzf -1 -q "$*"
|
||||||
else find $root -type d -name .git | xargs dirname | fzf -1
|
else find $root -type d -name .git | xargs -L 1 dirname | fzf -1
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue