From 829551afd67b8b6bf9acd317420b73782706fdb3 Mon Sep 17 00:00:00 2001 From: Guillermo Kuster Date: Fri, 13 Sep 2019 01:44:49 -0300 Subject: [PATCH] Missed a letter on fzf command --- Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples.md b/Examples.md index 380b747..6cd00eb 100644 --- a/Examples.md +++ b/Examples.md @@ -67,7 +67,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}" }