From 9b362cae38d5a301549b8e2875d8e411109d7c9e Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Tue, 19 May 2020 17:59:13 +0200 Subject: [PATCH] [sh] Fix linter errors --- sh/.config/sh/alias.d/enable-fasd-hook.sh | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/sh/.config/sh/alias.d/enable-fasd-hook.sh b/sh/.config/sh/alias.d/enable-fasd-hook.sh index 4bd4798..67698a1 100644 --- a/sh/.config/sh/alias.d/enable-fasd-hook.sh +++ b/sh/.config/sh/alias.d/enable-fasd-hook.sh @@ -3,14 +3,18 @@ # eval "$(fasd --init posix-hook posix_alias bash-hook zsh-hook zsh-ccomp zsh-ccomp-install zsh-wcomp zsh-wcomp-install)" type fasd >/dev/null 2>&1 && eval "$(fasd --init auto)" -alias a='fasd -a' # any -alias s='fasd -si' # show / search / select +# any +alias a='fasd -a' +# show / search / select +alias s='fasd -si' # alias d='fasd -d' # directory # alias f='fasd -f' # file # alias sd='fasd -sid' # interactive directory selection # alias sf='fasd -sif' # interactive file selection -alias z='fasd_cd -d' # cd, same functionality as j in autojump -alias zz='fasd_cd -d -i' # cd with interactive selection +# cd, same functionality as j in autojump +alias z='fasd_cd -d' +# cd with interactive selection +alias zz='fasd_cd -d -i' # from: https://github.com/clvv/fasd/issues/10 # since I can only load auto configuration and have default fasd_cd AND useless aliases