summaryrefslogtreecommitdiffstats
path: root/zsh/oh-my-zsh/plugins/kn
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2022-10-03 21:42:20 +0530
committerLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2022-10-03 21:42:20 +0530
commitaf120ab348f2e1a5a39dec035ed9dcf84189a64e (patch)
tree2a3aadd7ce1b7b771dfe3fe7c983569726c8d7ed /zsh/oh-my-zsh/plugins/kn
downloaddotfiles-af120ab348f2e1a5a39dec035ed9dcf84189a64e.tar.gz
dotfiles-af120ab348f2e1a5a39dec035ed9dcf84189a64e.tar.bz2
dotfiles-af120ab348f2e1a5a39dec035ed9dcf84189a64e.zip
dotfiles
Diffstat (limited to 'zsh/oh-my-zsh/plugins/kn')
-rw-r--r--zsh/oh-my-zsh/plugins/kn/README.md17
-rw-r--r--zsh/oh-my-zsh/plugins/kn/kn.plugin.zsh8
2 files changed, 25 insertions, 0 deletions
diff --git a/zsh/oh-my-zsh/plugins/kn/README.md b/zsh/oh-my-zsh/plugins/kn/README.md
new file mode 100644
index 0000000..d2eb9b3
--- /dev/null
+++ b/zsh/oh-my-zsh/plugins/kn/README.md
@@ -0,0 +1,17 @@
+# kn - Knative CLI
+
+This plugin provides autocompletion for [kn](https://knative.dev/docs/install/client/install-kn/) operations.
+
+To use it, add `kn` to the plugins array of your zshrc file:
+
+```zsh
+plugins=(... kn)
+```
+
+## See Also
+
++ [kn/client](https://github.com/knative/client)
+
+## Contributors
+
++ [btannous](https://github.com/btannous) - Plugin Author
diff --git a/zsh/oh-my-zsh/plugins/kn/kn.plugin.zsh b/zsh/oh-my-zsh/plugins/kn/kn.plugin.zsh
new file mode 100644
index 0000000..f60177d
--- /dev/null
+++ b/zsh/oh-my-zsh/plugins/kn/kn.plugin.zsh
@@ -0,0 +1,8 @@
+# Autocompletion for kn, the command line interface for knative
+#
+# Author: https://github.com/btannous
+
+if [ $commands[kn] ]; then
+ source <(kn completion zsh)
+ compdef _kn kn
+fi