added function iwclient
[grml-etc-core.git] / etc / skel / .zshrc
index 10f900e..1e4dc02 100644 (file)
@@ -24,6 +24,7 @@
 # autoloading stuff {{{
 # associate types and extensions (be aware with perl scripts and anwanted behaviour!)
 #  type zsh-mime-setup &>/dev/null || { autoload zsh-mime-setup && zsh-mime-setup }
+#  alias -s pl='perl -S'
 # }}}
 
 # completion system {{{
   mkmaildir() {
     local root subdir
     root=${MAILDIR_ROOT:-${HOME}/Mail}
-    if [[ -z ${1} ]] ; then print "Usage\n $0 <dirname>" ; fi
+    if [[ -z ${1} ]] ; then print "Usage:\n $0 <dirname>" ; return 1 ; fi
     subdir=${1}
     mkdir -p ${root}/${subdir}/{cur,new,tmp}
   }