1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-05 21:59:43 +00:00
prezto/plugins/kate/init.zsh
2012-01-23 20:41:02 -05:00

13 lines
183 B
Bash

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