From 510443abdf276266dee7f3a946808a377a141322 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Fri, 7 Jun 2019 10:57:06 +0200 Subject: [PATCH] Add fzy alias to be called as fzf --- .config/shell/rc.d/fzy-to-fzf.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .config/shell/rc.d/fzy-to-fzf.sh diff --git a/.config/shell/rc.d/fzy-to-fzf.sh b/.config/shell/rc.d/fzy-to-fzf.sh new file mode 100644 index 0000000..055996e --- /dev/null +++ b/.config/shell/rc.d/fzy-to-fzf.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +# check for existence of fzy. If found, substitute fzf with it. +type fzy >/dev/null 2>&1 && alias fzf=fzy