X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/d03d8c76da5a78ea2849d16fe518e882bb8d3c64..6bb1bbf7a009d57183595ef44017e7c6ee308e0f:/.zsh/zshrc/30_aliases?ds=sidebyside diff --git a/.zsh/zshrc/30_aliases b/.zsh/zshrc/30_aliases index 9b34ae0..d54934a 100644 --- a/.zsh/zshrc/30_aliases +++ b/.zsh/zshrc/30_aliases @@ -36,4 +36,10 @@ alias ftp=lftp alias mbug='bts show --mbox' alias bug='BROWSER=www-browser bts show' +# handy documentation lookup on Debian +# from http://www.michael-prokop.at/computer/config/.zshrc +doc() { cd /usr/share/doc/$1 && ls } +_doc() { _files -W /usr/share/doc -/ } +compdef _doc doc + # vim:ft=zsh