diff options
author | Robby Russell <robby@planetargon.com> | 2011-07-23 09:40:54 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2011-07-23 09:40:54 -0700 |
commit | dbc674988e915a81203b147f2b19903cd776e4d2 (patch) | |
tree | 43220704192e30e5e191d1e5dd938a5bc6b98094 /plugins/kate | |
parent | 2816ea726eac3ed861862280234ca4a2bb313191 (diff) | |
parent | d5ce689a0c10f71967dcc163cd66ef9bd2778416 (diff) | |
download | zsh-dbc674988e915a81203b147f2b19903cd776e4d2.tar.gz zsh-dbc674988e915a81203b147f2b19903cd776e4d2.tar.bz2 zsh-dbc674988e915a81203b147f2b19903cd776e4d2.zip |
Merge pull request #259 from dereine/master
Add a plugin to support kate the kde text editor
Diffstat (limited to 'plugins/kate')
-rw-r--r-- | plugins/kate/kate.plugin.zsh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/kate/kate.plugin.zsh b/plugins/kate/kate.plugin.zsh new file mode 100644 index 000000000..eb16522ac --- /dev/null +++ b/plugins/kate/kate.plugin.zsh @@ -0,0 +1,9 @@ + +# Kate +# Start kate always silent +alias kate='kate >/dev/null 2>&1' + +function kt () { + cd $1 + kate $1 +}
\ No newline at end of file |