fzy
terminal fuzzy finder picker
git clone https://9o.is/git/fzy.git
commit 33b8270a0c11cede991f358a981334d7da8a13c3 parent 9cbc4990b31443a011868d93e09c32b7d768cace Author: John Hawthorn <john.hawthorn@gmail.com> Date: Tue, 19 Aug 2014 21:43:14 -0700 Fix -eQUERY invocation Diffstat:
| M | fzy.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fzy.c b/fzy.c @@ -244,7 +244,7 @@ static struct option longopts[] = { int main(int argc, char *argv[]){ char *initial_query = NULL; char c; - while((c = getopt_long(argc, argv, "vhs", longopts, NULL)) != -1){ + while((c = getopt_long(argc, argv, "vhse:", longopts, NULL)) != -1){ switch(c){ case 'v': printf("%s " VERSION " (c) 2014 John Hawthorn\n", argv[0]);