git://105106.c2e0p.group
/
dotfiles.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Update zsh options; remove opensource & internal aliases
[dotfiles.git]
/
zsh_webkit_login
diff --git
a/zsh_webkit_login
b/zsh_webkit_login
index af71a2b3e83464f57b91c14779feddd6a79293c7..16325b61b3798c64054ee121b72d9a960c21313c 100644
(file)
--- a/
zsh_webkit_login
+++ b/
zsh_webkit_login
@@
-1,18
+1,17
@@
-#/bin/zsh
+#
!
/bin/zsh
switchto() {
export OLD_WEBKIT_DIR=$WEBKIT_DIR
export WEBKIT_DIR=~/Projects/WebKit.$1
switchto() {
export OLD_WEBKIT_DIR=$WEBKIT_DIR
export WEBKIT_DIR=~/Projects/WebKit.$1
- export
WEBKIT_OUTPUTDIR
=$WEBKIT_DIR/OpenSource/WebKitBuild
+ export
PERP_BUILD_PATH
=$WEBKIT_DIR/OpenSource/WebKitBuild
if [[ "$OLD_WEBKIT_DIR" == "" ]]; then
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/:$WEBKIT_DIR/OpenSource:$WEBKIT_DIR/OpenSource/Source:$WEBKIT_DIR/Internal
else
export PATH=$(echo $PATH | sed -e "s;$OLD_WEBKIT_DIR;$WEBKIT_DIR;g")
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=
fi
export OLD_WEBKIT_DIR=
-
- alias opensource="cd $WEBKIT_DIR/OpenSource"
- alias internal="cd $WEBKIT_DIR/Internal"
}
_webkit_dirs() { compadd $( for dir in ~/Projects/WebKit.*; do echo ${dir##*.}; done ) }
}
_webkit_dirs() { compadd $( for dir in ~/Projects/WebKit.*; do echo ${dir##*.}; done ) }
@@
-20,10
+19,12
@@
_switchto() { _arguments '1:dir:_webkit_dirs' }
compdef _switchto switchto
compdef _switchto switchto
-if [[ $( has subl ) == 'yes' ]]; then
+if [[ $( has sedit ) == 'yes' ]]; then
+ export GUI_EDITOR="sedit -w"
+elif [[ $( has subl ) == 'yes' ]]; then
export GUI_EDITOR="subl -w"
elif [[ $( has bbedit ) == 'yes' ]]; then
export GUI_EDITOR="subl -w"
elif [[ $( has bbedit ) == 'yes' ]]; then
- export GUI_EDITOR="bbedit
-w
"
+ export GUI_EDITOR="bbedit"
elif [[ $( has mate_wait ) == 'yes' ]]; then
export GUI_EDITOR="mate_wait"
else
elif [[ $( has mate_wait ) == 'yes' ]]; then
export GUI_EDITOR="mate_wait"
else