From a4137798f2aba57c434566eef700d4444fc7bcbc Mon Sep 17 00:00:00 2001 From: spl3g Date: Sun, 17 Nov 2024 13:30:26 +0300 Subject: feat: add M-o to eat's non bound keys --- home-manager/homeModules/emacs/config.org | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/home-manager/homeModules/emacs/config.org b/home-manager/homeModules/emacs/config.org index d98dae9..e0c2a94 100644 --- a/home-manager/homeModules/emacs/config.org +++ b/home-manager/homeModules/emacs/config.org @@ -815,7 +815,8 @@ Better query replace #+begin_src emacs-lisp (use-package eat :hook - (eshell-mode . eat-eshell-mode) + (eshell-load . eat-eshell-mode) + (eshell-load . eat-eshell-visual-command-mode) :custom (eat-enable-auto-line-mode t) :custom-face @@ -827,7 +828,10 @@ Better query replace (ansi-color-bright-green ((t (:inherit 'ansi-color-green)))) (ansi-color-bright-white ((t (:inherit 'ansi-color-white)))) (ansi-color-bright-yellow ((t (:inherit 'ansi-color-yellow)))) - (ansi-color-bright-magenta ((t (:inherit 'ansi-color-magenta))))) + (ansi-color-bright-magenta ((t (:inherit 'ansi-color-magenta)))) + :config + (add-to-list 'eat-eshell-semi-char-non-bound-keys [?\e ?o]) + (eat-eshell-update-semi-char-mode-map)) #+end_src ** Highlighting #+begin_src emacs-lisp -- cgit v1.2.3