fzy
terminal fuzzy finder picker
git clone https://9o.is/git/fzy.git
commit ed17bf82f4d7916f1142b424d76cc58c8d2fd1ed parent f48679cc4588a903f90f1896a2708e88d0b3df77 Author: John Hawthorn <john.hawthorn@gmail.com> Date: Thu, 19 May 2016 08:59:19 -0700 Fix permissions in make install Diffstat:
| M | Makefile | | | 2 | ++ |
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile @@ -35,8 +35,10 @@ config.h: install: fzy mkdir -p $(DESTDIR)$(BINDIR) cp fzy $(DESTDIR)$(BINDIR)/ + chmod 755 ${DESTDIR}${BINDIR}/fzy mkdir -p $(DESTDIR)$(MANDIR)/man1 cp fzy.1 $(DESTDIR)$(MANDIR)/man1/ + chmod 644 ${DESTDIR}${MANDIR}/man1/fzy.1 fmt: clang-format -i *.c *.h