From 31dfd1fd6df3468dc435c41583bf7c07ab11a7fe Mon Sep 17 00:00:00 2001 From: Sorin Ionescu Date: Tue, 24 Jan 2012 11:51:44 -0500 Subject: [PATCH] Removed the Kate plugin. --- plugins/kate/init.zsh | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 plugins/kate/init.zsh diff --git a/plugins/kate/init.zsh b/plugins/kate/init.zsh deleted file mode 100644 index 7fbf3d9..0000000 --- a/plugins/kate/init.zsh +++ /dev/null @@ -1,12 +0,0 @@ -# Aliases -alias kate='kate >/dev/null 2>&1' # Silent start. - -# Functions -function kt() { - if [[ -z "$1" ]]; then - kate . - else - ( [[ -d "$1" ]] && cd "$1" && kate . ) - fi -} -