This repository has been archived on 2022-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
prezto/lib/aliases.zsh

53 lines
1.3 KiB
Bash
Raw Normal View History

2009-10-12 15:17:36 -04:00
#!/bin/zsh
# Push and pop directories on directory stack
alias pu='pushd'
alias po='popd'
2009-08-31 08:58:53 -04:00
alias ss='thin --stats "/thin/stats" start'
2009-10-11 10:09:10 -04:00
alias sg='ruby script/generate'
alias sd='ruby script/destroy'
alias sp='ruby script/plugin'
alias ssp='ruby script/spec'
alias rdbm='rake db:migrate'
alias sc='ruby script/console'
alias sd='ruby script/server --debugger'
alias devlog='tail -f log/development.log'
2009-10-12 15:17:36 -04:00
# Basic directory operations
alias .='pwd'
alias ...='cd ../..'
alias -- -='cd -'
2009-10-12 15:17:36 -04:00
# Super user
alias _='sudo'
2009-08-31 08:59:34 -04:00
#alias g='grep -in'
2009-09-03 14:45:23 -04:00
2009-10-12 15:17:36 -04:00
# Show history
alias history='fc -l 1'
2009-10-12 15:17:36 -04:00
# List direcory contents
alias lsa='ls -lah'
2009-10-12 15:17:36 -04:00
alias l='ls -la'
alias ll='ls -alr'
alias sl=ls # often screw this up
alias sgem='sudo gem'
2009-10-12 15:17:36 -04:00
# Find ruby file
alias rfind='find . -name *.rb | xargs grep -n'
2009-10-11 09:49:24 -04:00
alias afind='ack-grep -il'
2009-10-12 15:17:36 -04:00
# Git and svn mix
alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk'
2009-10-12 15:17:36 -04:00
# TextMate
2009-08-31 08:59:16 -04:00
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 &'
2009-10-12 15:17:36 -04:00
# Editor Ruby file in TextMate
alias mr='mate CHANGELOG app config db lib public script spec test'