You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1004 B
39 lines
1004 B
alias pu='pushd' |
|
alias po='popd' |
|
|
|
alias sc='ruby script/console' |
|
alias sd='ruby script/server --debugger' |
|
alias ss='thin --stats "/thin/stats" start' |
|
|
|
alias mr='mate CHANGELOG app config db lib public script spec test' |
|
alias .='pwd' |
|
alias ...='cd ../..' |
|
|
|
alias _='sudo' |
|
|
|
#alias g='grep -in' |
|
alias g='git' |
|
|
|
alias history='fc -l 1' |
|
|
|
alias ls='ls -F' |
|
alias ll='ls -al' |
|
|
|
alias sgem='sudo gem' |
|
|
|
alias rfind='find . -name *.rb | xargs grep -n' |
|
|
|
alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk' |
|
|
|
bindkey '\ew' kill-region |
|
|
|
bindkey -s '\el' "ls\n" |
|
bindkey -s '\e.' "..\n" |
|
|
|
alias et='mate . &' |
|
alias ett='mate app config lib db public spec test Rakefile Capfile Todo &' |
|
alias etp='mate app config lib db public spec test vendor/plugins vendor/gems Rakefile Capfile Todo &' |
|
alias etts='mate app config lib db public script spec test vendor/plugins vendor/gems Rakefile Capfile Todo &' |
|
|
|
bindkey "^[[A" history-beginning-search-backward |
|
bindkey "^[[B" history-beginning-search-forward
|
|
|