diff --git a/emacs/init.org b/emacs/init.org index 59faf3d..edb2479 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -2647,7 +2647,9 @@ Visual programs: #+BEGIN_SRC emacs-lisp (defun eshell-setup () (add-to-list 'eshell-visual-commands "crawl") - (add-to-list 'eshell-visual-commands "ssh")) + (add-to-list 'eshell-visual-commands "ssh") + (add-to-list 'eshell-visual-subcommands '("kubectl" "exec")) + (add-to-list 'eshell-visual-subcommands '("k" "exec"))) (add-hook 'eshell-mode-hook #'eshell-setup) #+END_SRC