X-Git-Url: http://id.pley.net/dotfiles.git/blobdiff_plain/2b82952cde87591df9919ee002e04584657e4e5d..7db6359521ae4d3e6435fe23e097c23926a9ef5f:/.webkit_login diff --git a/.webkit_login b/.webkit_login deleted file mode 100644 index 1692b29..0000000 --- a/.webkit_login +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/bash - -function switchto() { - export OLD_WEBKIT_DIR=$WEBKIT_DIR - export WEBKIT_DIR=~/Projects/WebKit.$1 - if [[ "$OLD_WEBKIT_DIR" == "" ]]; then - export PATH=$PATH:$WEBKIT_DIR/OpenSource/Tools:$WEBKIT_DIR/OpenSource/Tools/Scripts:$WEBKIT_DIR/Internal/Tools/Scripts - else - export PATH=$(echo $PATH | sed -e "s;$OLD_WEBKIT_DIR;$WEBKIT_DIR;g") - fi - export OLD_WEBKIT_DIR= - - alias opensource="cd $WEBKIT_DIR/OpenSource" - alias internal="cd $WEBKIT_DIR/Internal" - source $WEBKIT_DIR/OpenSource/Tools/Scripts/webkit-tools-completion.sh -} - -function _switchto_complete() { - COMPREPLY=() - cur="${COMP_WORDS[COMP_CWORD]}" - opts=$( for dir in ~/Projects/WebKit.*; do echo ${dir##*.}; done ) - COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) - return 0 -} - -complete -F _switchto_complete switchto - -export EMAIL_ADDRESS=jer.noble@apple.com -export PS1='$( if [ $? = 0 ]; then echo \[\e[32m\]:-\)\ ; else echo \[\e[31m\]:-\(\ ;fi;)\[\e[0m\]$(__git_ps1 "(%s) ")\u@\h:$(short_pwd)> ' -source ~/bin/git-completion.bash - -switchto git -