* eat.el (eat-eshell-emacs-mode-map): Disable undo

This commit is contained in:
Akib Azmain Turja 2022-12-11 14:44:01 +06:00
parent aa0607e1cb
commit 917464cf56
No known key found for this signature in database
GPG key ID: 5535FCF54D88616B

1
eat.el
View file

@ -5233,6 +5233,7 @@ PROGRAM can be a shell command."
(define-key map [?\C-c ?\C-j] #'eat-eshell-semi-char-mode)
(define-key map [remap eshell-toggle-direct-send] ; C-c M-d
#'eat-eshell-char-mode)
(define-key map [remap undo] #'undefined) ; Disable `undo'.
map)
"Keymap for Eat Eshell \"emacs\" mode.")