1
0
Fork 0

Easily open files and directories in Kate.

pull/4/head
Sorin Ionescu 13 years ago
parent b308a94c91
commit cf9c37d2b4

@ -3,6 +3,10 @@ alias kate='kate >/dev/null 2>&1' # Silent start.
# Functions # Functions
function kt() { function kt() {
cd "$1" && kate . if [[ -z "$1" ]]; then
kate .
else
( [[ -d "$1" ]] && cd "$1" && kate . )
fi
} }

Loading…
Cancel
Save