From 69e77a744944cf09f073a6811865bf3666595c78 Mon Sep 17 00:00:00 2001 From: Alexander Rosenberg Date: Fri, 20 Sep 2024 12:03:09 -0700 Subject: [PATCH] Fix ace-window in eat eshell --- init.el | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 526893e..b8b74db 100644 --- a/init.el +++ b/init.el @@ -1263,7 +1263,15 @@ argument." ;; eat (use-package eat - :bind ("C-c V" . my/project-eat-or-default) + :bind (("C-c V" . my/project-eat-or-default) + :map eat-mode-map + ("M-o" . ace-window) + :map eat-semi-char-mode-map + ("M-o" . ace-window) + :map eat-eshell-emacs-mode-map + ("M-o" . ace-window) + :map eat-eshell-semi-char-mode-map + ("M-o" . ace-window)) :config (defvar my/project-eat-hash-table (make-hash-table :test 'equal) "Hash table that maps project root dirs to eat buffers.")