annotate .zsh/01.aliases.zsh @ 31:a5691a22c92b
Fix a bug in update_source_trees where it could eat any existing dirstack
entries if there were any non-directories in the working directory.
author |
Augie Fackler <durin42@gmail.com> |
date |
Mon, 05 Jan 2009 11:46:29 -0600 |
parents |
c30d68fbd368 |
children |
|
rev |
line source |
0
|
1 #aliases and funtions to act like them |
|
2 function less() { command less -M "$@" } |
|
3 function ll() { command ls -lFh "$@" } |
|
4 function ls() { command ls -F "$@" } |
|
5 function la() { command ls -aF "$@" } |
|
6 function lla() { command ls -laFh "$@" } |
|
7 function screen() { command screen -U "$@" } |
|
8 function ipy() { command ipython "$@" } |
|
9 function memacs() { command open -a Emacs "$@" } |
|
10 alias vi='vim' |