From 68cb575451a0a9aba47c67791bd3c7dd92bf2297 Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Mon, 22 Mar 2021 08:23:30 -0400 Subject: [PATCH] Kubectl completions --- emacs/init.el | 2 +- zsh/funcs/oc | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 zsh/funcs/oc diff --git a/emacs/init.el b/emacs/init.el index 0447d25..e4d89e1 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -64,7 +64,7 @@ ("melpa" . "https://melpa.org/packages/") ("org" . "https://orgmode.org/elpa/"))) '(package-selected-packages - '(embark-consult embark selectrum-prescient prescient marginalia consult-flycheck consult-selectrum selectrum lua-mode lsp-mode yaml-mode evil-lispy treemacs-magit treemacs-evil treemacs lsp-pyright lsp-ui rustic flycheck origami groovy-mode avy editorconfig org-crypt tree-sitter-langs tree-sitter centaur-tabs dashboard page-break-lines wakatime-mode super-save ox-pandoc evil-surround evil-collection undo-tree toc-org evil-org org-plus-contrib evil-goggles evil-expat evil-commentary auto-package-update lispy smartparens which-key git-gutter rainbow-delimiters auto-complete-distel auto-complete evil magit evil-magit)) + '(consult embark-consult embark selectrum-prescient prescient marginalia consult-flycheck consult-selectrum selectrum lua-mode lsp-mode yaml-mode evil-lispy treemacs-magit treemacs-evil treemacs lsp-pyright lsp-ui rustic flycheck origami groovy-mode avy editorconfig org-crypt tree-sitter-langs tree-sitter centaur-tabs dashboard page-break-lines wakatime-mode super-save ox-pandoc evil-surround evil-collection undo-tree toc-org evil-org org-plus-contrib evil-goggles evil-expat evil-commentary auto-package-update lispy smartparens which-key git-gutter rainbow-delimiters auto-complete-distel auto-complete evil magit evil-magit)) '(prescient-filter-method '(literal regexp initialism fuzzy)) '(ring-bell-function 'ignore) '(rustic-format-trigger 'on-compile) diff --git a/zsh/funcs/oc b/zsh/funcs/oc new file mode 100644 index 0000000..9fc4991 --- /dev/null +++ b/zsh/funcs/oc @@ -0,0 +1,8 @@ +if [[ ( $ZNAP_USED = 1 ) ]]; then + if [[ $( command -v kubectl ) ]]; then + znap compdef _kubectl 'kubectl completion zsh' + fi + if [[ $( command -v oc ) ]]; then + znap compdef _oc 'oc completion zsh' + fi +fi