X-Git-Url: https://git.grml.org/?a=blobdiff_plain;f=etc%2Fzsh%2Fzshrc;h=9d003a613c21a6a7defd79eaac74abde427bee5c;hb=8ad1e597220b6e52ae31a7236727c4429633db20;hp=0966efb237279945c54f37e0104515d6d15820ef;hpb=664814899fc5efcaebd8517ce3a519394e470679;p=grml-etc-core.git diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index 0966efb..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} @@ -2820,27 +2800,6 @@ sshot() { cd ~/shots ; sleep 5; import -window root shot_`date --iso-8601=m`.jpg } -# list images only -limg() { - local -a images - images=( *.{jpg,gif,png}(.N) ) - - if [[ $#images -eq 0 ]] ; then - print "No image files found" - else - ls "$images[@]" - fi -} - -#f5# Create PDF file from source code -makereadable() { - emulate -L zsh - output=$1 - shift - a2ps --medium A4dj -E -o $output $* - ps2pdf $output -} - #f5# List files which have been accessed within the last {\it n} days, {\it n} defaults to 1 accessed() { emulate -L zsh