]> git.donarmstrong.com Git - home-base.git/commitdiff
* stop using devtodo
authorDon Armstrong <don@donarmstrong.com>
Thu, 3 Feb 2011 22:21:33 +0000 (22:21 +0000)
committerDon Armstrong <don@donarmstrong.com>
Thu, 3 Feb 2011 22:21:33 +0000 (22:21 +0000)
.bashrc

diff --git a/.bashrc b/.bashrc
index fb14d9598ad41445a791e97728b212f31b93835d..c60fdfdbcc7ee78ea70cf5cc77387647deff9670 100644 (file)
--- a/.bashrc
+++ b/.bashrc
@@ -139,34 +139,34 @@ if [ "$PS1" ]; then
     fi;
     export TMPDIR="$(echo ~/tmp)";
 
-    if [ -n "$(which devtodo)" ]; then
-       for a in tda tdd tde; do
-           alias "s${a}"="STODO_NO_COMMIT=1 $a"
-       done;
-
-       TODO_OPTIONS="--timeout --summary"
+    if [ -n "$(which devtodo)" ]; then
+#      for a in tda tdd tde; do
+#          alias "s${a}"="STODO_NO_COMMIT=1 $a"
+#      done;
+# 
+#      TODO_OPTIONS="--timeout --summary"
 
        cd ()
        {
            # use pushd instead of cd
            if [ -z "$1" ] || [ "$1" == "-" ]; then
-               builtin cd "$@" && [ -r .todo ] && devtodo ${TODO_OPTIONS};
+               builtin cd "$@"; # && [ -r .todo ] && devtodo ${TODO_OPTIONS};
            else
-               builtin pushd "$@" >/dev/null && [ -r .todo ] && devtodo ${TODO_OPTIONS};
+               builtin pushd "$@"; # >/dev/null && [ -r .todo ] && devtodo ${TODO_OPTIONS};
            fi;
        }
 
-       pushd ()
-       {
-            builtin pushd "$@" && [ -r .todo ] && devtodo ${TODO_OPTIONS}
-       }
-       
-       popd ()
-       {
-            builtin popd "$@" && [ -r .todo ] && devtodo ${TODO_OPTIONS}
-       }              
+#      pushd ()
+#      {
+            builtin pushd "$@" && [ -r .todo ] && devtodo ${TODO_OPTIONS}
+#      }
+#      
+#      popd ()
+#      {
+            builtin popd "$@" && [ -r .todo ] && devtodo ${TODO_OPTIONS}
+#      }              
        
         # Run todo initially upon login
-       devtodo ${TODO_OPTIONS}
-    fi;
+#      devtodo ${TODO_OPTIONS}
+    fi;
 fi