From 42cbed25b2c479811ded796072ead86538b82760 Mon Sep 17 00:00:00 2001 From: druckdev <63563978+druckdev@users.noreply.github.com> Date: Sat, 7 Nov 2020 02:17:17 +0100 Subject: [PATCH] zsh:alias:zathura: Move output redirection to end Move the output redirection of the zathura-pdf alias from the front to the end to not confuse zsh-syntax-highlighting. --- .config/zsh/plugins/alias.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/zsh/plugins/alias.zsh b/.config/zsh/plugins/alias.zsh index 4a8ea38..61d86ce 100644 --- a/.config/zsh/plugins/alias.zsh +++ b/.config/zsh/plugins/alias.zsh @@ -44,7 +44,7 @@ alias cl='() { cd "$@" && ls }' alias getclip="xclip -selection c -o" alias setclip="perl -pe 'chomp if eof' | xclip -selection c" - alias pdf='&>/dev/null zathura --fork' + alias pdf='zathura --fork &>/dev/null' alias geeqie='launch qeeqie' alias rd='rmdir' alias md='mkdir -p'