export WEBKIT_DIR=~/Projects/WebKit.$1
export WEBKIT_OUTPUTDIR=$WEBKIT_DIR/OpenSource/WebKitBuild
if [[ "$OLD_WEBKIT_DIR" == "" ]]; then
- export PATH=$PATH:$WEBKIT_DIR/OpenSource/Tools:$WEBKIT_DIR/OpenSource/Tools/Scripts:$WEBKIT_DIR/Internal/Tools/Scripts
+ export PATH=$PATH:$WEBKIT_DIR/Internal/Tools/Scripts:$WEBKIT_DIR/OpenSource/Tools:$WEBKIT_DIR/OpenSource/Tools/Scripts
+ export CDPATH=$CDPATH:$WEBKIT_DIR/OpenSource:$WEBKIT_DIR/OpenSource/Source:$WEBKIT_DIR/Internal
else
export PATH=$(echo $PATH | sed -e "s;$OLD_WEBKIT_DIR;$WEBKIT_DIR;g")
+ export CDPATH=$(echo $CDPATH | sed -e "s;$OLD_WEBKIT_DIR;$WEBKIT_DIR;g")
fi
export OLD_WEBKIT_DIR=
compdef _switchto switchto
-if [[ $( has bbedit ) == 'yes' ]]; then
+if [[ $( has subl ) == 'yes' ]]; then
+ export GUI_EDITOR="subl -w"
+elif [[ $( has bbedit ) == 'yes' ]]; then
export GUI_EDITOR="bbedit -w"
elif [[ $( has mate_wait ) == 'yes' ]]; then
export GUI_EDITOR="mate_wait"