X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/82ad413bc9c2f293c0758fe262d3904df456abbf..fc84fb7733e3ed4dd3c5c3b7f46521212af0c2a7:/.zsh/zshrc/30_aliases?ds=sidebyside

diff --git a/.zsh/zshrc/30_aliases b/.zsh/zshrc/30_aliases
index 7170d3c..a4ad3c5 100644
--- a/.zsh/zshrc/30_aliases
+++ b/.zsh/zshrc/30_aliases
@@ -5,7 +5,7 @@
 # Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
 # Released under the terms of the Artistic Licence 2.0
 #
-# Source repository: http://git.madduck.net/v/etc/zsh.git
+# Source repository: git://git.madduck.net/etc/zsh.git
 #
 
 alias mv='nocorrect mv'
@@ -36,17 +36,15 @@ alias ll='ls -l'
 alias l=ll
 alias la='ls -a'
 alias lla='ls -la'
+alias lt='ls -lt'
 alias lrt='ls -lrt'
+alias lat='ls -lat'
 alias lart='ls -lart'
 # List only directories and symbolic links that point to directories
-alias lsd='ls -ld *(-/DN)'
+alias lsd='ll -d *(-/DN)'
 
-alias lsbig="ls -flh *(.OL[1,10])"
-alias lssmall="ls -Srl *(.oL[1,10])"
-alias lsnew="ls -rl *(D.om[1,10])"
-alias lsold="ls -rtlh *(D.om[1,10])"
-
-cd () { builtin cd "$@" && lrt }
+alias lscontext=ll
+cd () { __CHPWD_RUN_FIRST=lscontext && builtin cd "$@" && unset __CHPWD_RUN_FIRST }
 #_cd_l() { ll }
 #chpwd_functions+=_cd_l
 
@@ -130,6 +128,9 @@ unset _LANGUAGES
 
 alias dpkg-buildpackage="dpkg-buildpackage -k$DEBKEYID -rfakeroot"
 
+bugsub() { echo X-debbugs-autosubscribe: madduck | sendmail -f $DEBEMAIL ${1:?No bug number}-subscribe@bugs.debian.org }
+bugunsub() { sendmail -f $DEBEMAIL ${1:?No bug number}-unsubscribe@bugs.debian.org </dev/null }
+
 uc() { unicode --max=0 --colour=off "$@" | sensible-pager }
 
 alias ipr='ip r'
@@ -138,4 +139,14 @@ alias ipl='ip l'
 
 alias btd='btdownloadheadless'
 
+alias mdtest='swaks -s localhost -t'
+
+if whence devtodo >/dev/null; then
+  _devtodo_on_chpwd() { 
+    local out; out="$(devtodo)"
+    [[ -n $out ]] && print "todo:\n$out"
+  }
+  chpwd_functions+=_devtodo_on_chpwd
+fi
+
 # vim:ft=zsh