summaryrefslogtreecommitdiff
path: root/lib/functions.zsh
diff options
context:
space:
mode:
authorRobby Russell <robby@planetargon.com>2010-06-03 12:03:26 -0700
committerRobby Russell <robby@planetargon.com>2010-06-03 12:03:26 -0700
commit3cf9ab722e7c0829727f548c7d05a0d96055f707 (patch)
tree775b6b98d54bcbdf5158786e4c1c53f3d9494261 /lib/functions.zsh
parenteb0f3c0234e88bbbf5ca014ace8d8d801207c222 (diff)
downloadzsh-3cf9ab722e7c0829727f548c7d05a0d96055f707.tar.gz
zsh-3cf9ab722e7c0829727f548c7d05a0d96055f707.tar.bz2
zsh-3cf9ab722e7c0829727f548c7d05a0d96055f707.zip
Initial implementation of a new plugin system, so that people can managed which aliases/functions they want.
Diffstat (limited to 'lib/functions.zsh')
-rw-r--r--lib/functions.zsh21
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/functions.zsh b/lib/functions.zsh
index 74b93f00e..35c3f3ce7 100644
--- a/lib/functions.zsh
+++ b/lib/functions.zsh
@@ -54,24 +54,3 @@ function take() {
cd $1
}
-function tm() {
- cd $1
- mate $1
-}
-
-# To use: add a .lighthouse file into your directory with the URL to the
-# individual project. For example:
-# https://rails.lighthouseapp.com/projects/8994
-# Example usage: http://screencast.com/t/ZDgwNDUwNT
-open_lighthouse_ticket () {
- if [ ! -f .lighthouse-url ]; then
- echo "There is no .lighthouse file in the current directory..."
- return 0;
- else
- lighthouse_url=$(cat .lighthouse-url);
- echo "Opening ticket #$1";
- `open $lighthouse_url/tickets/$1`;
- fi
-}
-
-alias lho='open_lighthouse_ticket'