Removed the Kate plugin.

This commit is contained in:
Sorin Ionescu 2012-01-24 11:51:44 -05:00
parent f430bd75c6
commit 31dfd1fd6d

View File

@ -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
}