From 232492536d82e709115cc2c797ce3067fbeebf86 Mon Sep 17 00:00:00 2001 From: Rizwan Date: Mon, 5 Aug 2019 20:58:56 +0530 Subject: [PATCH] Correcting fz to fzf --- Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples.md b/Examples.md index 956169a..c453984 100644 --- a/Examples.md +++ b/Examples.md @@ -66,7 +66,7 @@ Table of Contents # f 'echo Selected music:' --extention mp3 # fm rm # To rm files in current directory f() { - sels=( "${(@f)$(fd "${fd_default[@]}" "${@:2}"|fz)}" ) + sels=( "${(@f)$(fd "${fd_default[@]}" "${@:2}"|fzf)}" ) test -n "$sels" && print -z -- "$1 ${sels[@]:q:q}" }