diff options
| -rwxr-xr-x | bin/common/goo | 2 | ||||
| -rw-r--r-- | config/essentials/zsh/functions.zsh | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/common/goo b/bin/common/goo index a56cbaf..cfd03ec 100755 --- a/bin/common/goo +++ b/bin/common/goo @@ -18,6 +18,6 @@ arduino15"  for dir in $exclude; do      dirs="$dirs -name \"$dir\" -o "  done -cmd="find ${dest:-$HOME} \(${dirs} -false \) -prune -o -type ${1:-f} -mindepth 1 -print" +cmd="find ${2:-$HOME} \(${dirs} -false \) -prune -o -type ${1:-f} -mindepth 1 -print"  eval "$cmd" 2>/dev/null diff --git a/config/essentials/zsh/functions.zsh b/config/essentials/zsh/functions.zsh index 3c5f11f..e0eeb45 100644 --- a/config/essentials/zsh/functions.zsh +++ b/config/essentials/zsh/functions.zsh @@ -49,7 +49,7 @@ _googoo_fzf_opt ()  o ()  {  	_googoo_fzf_opt "$1" -	f="$(goo f "dest" | fzf $opt)" +	f="$(goo f "$dest" | fzf $opt)"  	test "$1" && shift  	test -f "$f" && $EDITOR $@ "$f"  }  | 
