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.
This commit is contained in:
2020-11-07 02:17:17 +01:00
parent 105dc7b49e
commit 42cbed25b2

View File

@@ -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'