Skip to content

Instantly share code, notes, and snippets.

@nummi
Created January 15, 2009 16:39
Show Gist options
  • Save nummi/47474 to your computer and use it in GitHub Desktop.
Save nummi/47474 to your computer and use it in GitHub Desktop.
function cd() { builtin cd $1 && ls }
function pman() { man -t "${1}" | open -f -a /Applications/Preview.app }
function preview() { open -a Preview $* }
# Force 'sudo zsh' to start root as a loging shell to
# avoid problems with environment clashes
function sudo() {
if [[ $1 = "zsh" ]]; then
command sudo /opt/local/bin/zsh -l
else
command sudo "$@"
fi
}
# Passenger (mod_rails)
function reload() { touch tmp/restart.txt }
get_git_branch_name() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'
}
function pushed() {
if [ $@ ]; then
git cherry -v origin/$@
else
git cherry -v origin/$(get_git_branch_name)
fi
}
# Did you forget to `git push`?
need_push() {
result=$(pushed $(get_git_branch_name))
if [[ $result == "" ]]
then echo ""
else echo "unpushed!"
fi
}
# Is the git working directory dirty?
git_status() {
if current_git_status=$(git status 2> /dev/null | grep --regex="deleted\|modified\|Untracked" 2> /dev/null); then
echo "⚡"
else
echo ''
fi
}
# Put the parentdir/currentdir in the tab
set_term_tab() {
echo -ne "\e]1;$PWD:h:t/$PWD:t\a"
}
set_running_app() {
printf "\e]1; $PWD:t:$(history $HISTCMD | cut -b7- ) \a"
}
# Put the string "hostname::/full/directory/path" in the title bar:
set_term_title() {
echo -ne "\e]2;$PWD\a"
}
set_prompt() {
export PS1='%2/ ~ '
branch_prompt=$(get_git_branch_name)
if [ -n "$branch_prompt" ]; then
export PS1="%2/ ($(get_git_branch_name)) ~ "
export RPS1="%{$fg[yellow]%}$(git_status) $(need_push)%{$reset_color%}"
fi
}
precmd() {
set_term_title
set_term_tab
set_prompt
}
preexec() {
set_running_app
}
postexec() {
set_running_app
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment