From 869df527ecc52a688360b441032c1ec5a67fed6d Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Mon, 4 Oct 2021 17:05:43 -0700 Subject: [PATCH] increase number of fzy lines in ff --- sh/ff | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sh/ff b/sh/ff index ed18848..57f3d64 100755 --- a/sh/ff +++ b/sh/ff @@ -8,7 +8,7 @@ ff() { ### @- ### select a file from a given or current directory using ### [`fzy`.](https://github.com/jhawthorn/fzy) [ $# -le 1 ] || { printf "%s\n" "$0: too many arguments" >&2; return 1; } - find "${1:-.}" -type f | fzy + find "${1:-.}" -type f | fzy -l 23 } [ -n "${preload+-}" ] || ff "$@"