diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-08-14 21:37:08 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-08-14 21:37:08 +0200 |
commit | e1893b1b31503adaa2c2484b57a5d7a4a5d0516c (patch) | |
tree | b0e490701fce7a94b803ff0505cabe8a7ffe19a9 /config/essentials/zsh/functions.zsh | |
parent | 0b8685b836fb3cc034857438bf87076fa39af1a1 (diff) |
[googoo] fixed destination argument not working
Diffstat (limited to 'config/essentials/zsh/functions.zsh')
-rw-r--r-- | config/essentials/zsh/functions.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
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" } |