fzy

terminal fuzzy finder picker

git clone https://9o.is/git/fzy.git

commit c49d91e6182015d3760340e8763ff5f36efee0f7
parent b756043594b93f1d6d4af9de7667f5da5fddb91e
Author: John Hawthorn <john.hawthorn@gmail.com>
Date:   Sun, 24 Apr 2016 16:12:07 -0700

Don't ignore make test errors

Diffstat:
MMakefile | 2+-
Mfzytest.c | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -17,7 +17,7 @@ fzytest: fzytest.o match.o choices.o $(CC) $(CFLAGS) $(CCFLAGS) -o $@ $^ test: fzytest - -$(DEBUGGER) ./fzytest + $(DEBUGGER) ./fzytest fzy: fzy.o match.o tty.o choices.o $(CC) $(CFLAGS) $(CCFLAGS) -o $@ $^ diff --git a/fzytest.c b/fzytest.c @@ -102,7 +102,7 @@ void test_positions_4() { void test_positions_5() { size_t positions[3]; - match_positions("abc", "a a b c c", positions); + match_positions("abc", "a/a/b/c/c", positions); assert(positions[0] == 2); assert(positions[1] == 4); assert(positions[2] == 6);