Merge branch 'main' of ssh://git.zander.im/Zander671/emacs-config

This commit is contained in:
Alexander Rosenberg 2024-09-26 16:45:55 -07:00
commit e7b13a1350
Signed by: Zander671
GPG Key ID: 5FD0394ADBD72730

10
init.el
View File

@ -1264,7 +1264,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.")