X-Git-Url: https://git.grml.org/?a=blobdiff_plain;f=etc%2Fzsh%2Fzshrc;h=9d003a613c21a6a7defd79eaac74abde427bee5c;hb=8ad1e597220b6e52ae31a7236727c4429633db20;hp=a793793a1782d8e09b9dc3551b8c577fb9e0eb4c;hpb=4430c904387787d6d530b67e44e99f50be140113;p=grml-etc-core.git diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index a793793..9d003a6 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -2783,26 +2783,6 @@ udiff() { emulate -L zsh diff -urd $* | egrep -v "^Only in |^Binary files " } -#f5# (Mis)use \kbd{vim} as \kbd{less} -viless() { - emulate -L zsh - vim --cmd 'let no_plugin_maps = 1' -c "so \$VIMRUNTIME/macros/less.vim" "${@:--}" -} - -# Function Usage: uopen $URL/$file -#f5# Download a file and display it locally -uopen() { - emulate -L zsh - if ! [[ -n "$1" ]] ; then - print "Usage: uopen \$URL/\$file">&2 - return 1 - else - FILE=$1 - MIME=$(curl --head $FILE | grep Content-Type | cut -d ' ' -f 2 | cut -d\; -f 1) - MIME=${MIME%$'\r'} - curl $FILE | see ${MIME}:- - fi -} # Function Usage: doc packagename #f5# \kbd{cd} to /usr/share/doc/\textit{package}