diff options
| author | spl3g <spleefer6@yandex.ru> | 2024-11-17 13:30:26 +0300 |
|---|---|---|
| committer | spl3g <spleefer6@yandex.ru> | 2025-05-01 14:58:56 +0300 |
| commit | a4137798f2aba57c434566eef700d4444fc7bcbc (patch) | |
| tree | 147c434aa8615d63edf59cddcf68414e423a21d8 /home-manager/homeModules/emacs/config.org | |
| parent | 0d456a26917483962c5e1b918873ce38179ff93f (diff) | |
feat: add M-o to eat's non bound keys
Diffstat (limited to 'home-manager/homeModules/emacs/config.org')
| -rw-r--r-- | home-manager/homeModules/emacs/config.org | 8 |
1 files 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 |
