From 8debd097fbea09032c27b2c8d69d8430d7ea0551 Mon Sep 17 00:00:00 2001 From: Robby Russell Date: Wed, 23 Sep 2009 07:43:36 -0700 Subject: Moving all zsh config options into a lib/ subdirectory to make way for some upcoming changes to directory structure and configuration options --- functions.zsh | 59 ----------------------------------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 functions.zsh (limited to 'functions.zsh') diff --git a/functions.zsh b/functions.zsh deleted file mode 100644 index e3891f6fc..000000000 --- a/functions.zsh +++ /dev/null @@ -1,59 +0,0 @@ -function title { - if [[ $TERM == "screen" ]]; then - # Use these two for GNU Screen: - print -nR $'\033k'$1$'\033'\\\ - - print -nR $'\033]0;'$2$'\a' - elif [[ $TERM == "xterm" || $TERM == "rxvt" ]]; then - # Use this one instead for XTerms: - print -nR $'\033]0;'$*$'\a' - fi -} - -function precmd { - title zsh "$PWD" -} - -function preexec { - emulate -L zsh - local -a cmd; cmd=(${(z)1}) - title $cmd[1]:t "$cmd[2,-1]" -} - -function remote_console() { - /usr/bin/env ssh $1 "( cd $2 && ruby script/console production )" -} - -function zsh_stats() { - history | awk '{print $2}' | sort | uniq -c | sort -rn | head -} - -function uninstall_oh_my_zsh() { - /bin/sh $ZSH/tools/uninstall.sh -} - -function upgrade_oh_my_zsh() { - /bin/sh $ZSH/tools/upgrade.sh -} - -function tab() { - osascript 2>/dev/null <