]> id.pley.net Git - dotfiles.git/blobdiff - .webkit_login
Added 'switchto' command
[dotfiles.git] / .webkit_login
index 7d1e52f767706cd9805da74b3dfbc290ac8f81b0..d99772ae27eb6a43ff6469b29d3ac989b8fa6f70 100644 (file)
@@ -1,4 +1,20 @@
 #!/bin/bash
 
 #!/bin/bash
 
-export WEBKIT_DIR=~/Projects/WebKit.git
-source ${WEBKIT_DIR}/webkitenv
\ No newline at end of file
+function switchto() {
+    export WEBKIT_DIR=~/Projects/WebKit.$1
+    if [[ -f ${WEBKIT_DIR}/webkitenv ]]; then
+        source ${WEBKIT_DIR}/webkitenv
+    fi
+}
+
+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
+
+switchto PuzzleBox
\ No newline at end of file