From 8fc531b05e0f70f3148fde8bf1f9049136f5d236 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Mon, 14 Mar 2016 22:09:58 +0100 Subject: removed zsh --- zsh/functions/c | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 zsh/functions/c (limited to 'zsh/functions/c') diff --git a/zsh/functions/c b/zsh/functions/c deleted file mode 100644 index 486a3c6..0000000 --- a/zsh/functions/c +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/zsh -# -# This lets you quickly jump into a project directory. -# -# Type: -# -# c -# -# ...to autocomplete on all of your projects in the directories specified in -# `functions/_c`. Typically I'm using it like: -# -# c holm/bo -# -# ...to quickly jump into holman/boom, for example. -# -# This also accounts for how Go structures its projects. For example, it will -# autocomplete both on $PROJECTS, and also assume you want to autocomplete on -# your Go projects in $GOPATH/src. - -if [ ! -z "$1" ] && [ -s "$GOPATH/src/github.com/$1" ]; then - cd "$GOPATH/src/github.com/$1" -else - cd "$PROJECTS/$1" -fi -- cgit v1.2.3