All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
3 # Defines command shortcuts
5 # Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
6 # Released under the terms of the Artistic Licence 2.0
8 # Source repository: http://git.madduck.net/v/etc/zsh.git
12 alias -g ....=../../..
14 alias mv='nocorrect mv' # no spelling correction on mv
15 alias cp='nocorrect cp' # no spelling correction on cp
16 alias mkdir='nocorrect mkdir' # no spelling correction on mkdir
17 alias find='noglob find' # no globbing for find
19 alias ls='ls -bCF --color=auto --group-directories-first'
23 # List only directories and symbolic links that point to directories
24 alias lsd='ls -ld *(-/DN)'
26 alias lsbig="ls -flh *(.OL[1,10])"
27 alias lssmall="ls -Srl *(.oL[1,10])"
28 alias lsnew="ls -rl *(D.om[1,10])"
29 alias lsold="ls -rtlh *(D.om[1,10])"
31 alias egrep='egrep --color=auto -d skip'
32 alias fgrep='fgrep --color=auto -d skip'
33 alias grep='grep --color=auto -d skip'
35 alias mmv='noglob zmv -W'
42 alias mbug='bts show --mbox'
43 alias bug='BROWSER=www-browser bts show'
45 # handy documentation lookup on Debian
46 # from http://www.michael-prokop.at/computer/config/.zshrc
47 doc() { cd /usr/share/doc/$1 && ls }
48 _doc() { _files -W /usr/share/doc -/ }