diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-11-26 12:54:31 +0100 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-11-26 12:54:31 +0100 |
commit | 78bced8de90cc65b897f7f9b7c7987bddc87f51c (patch) | |
tree | fde726dfc78527b107ec4bae75aac822c9023a44 /config/essentials/zsh | |
parent | c637bf905bdaa5b3310f1eb293f40d785164fc3c (diff) |
use nvf from anywhere
Diffstat (limited to 'config/essentials/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 8bf6c43..98cca08 100644 --- a/config/essentials/zsh/functions.zsh +++ b/config/essentials/zsh/functions.zsh @@ -14,7 +14,7 @@ nvf() { if test ! -f "$match" then logn "resetting cache..." - match="$(goo | tee "$cache" | grep -m 1 "$1$" 2> /dev/null)" + match="$(goo f "$HOME" | tee "$cache" | grep -m 1 "$1$" 2> /dev/null)" # # Alternative: # match="$(goo | grep -m 1 "$1" 2> /dev/null | tee -a | "$cache")" fi |