Add C-c C-e as an alias for C-x C-e

That's the practice in most similar Emacs modes.
This commit is contained in:
Bozhidar Batsov 2022-07-19 09:16:17 +03:00 committed by Rudi Grinberg
parent 5049cd9344
commit 2bee980a9d
1 changed files with 1 additions and 0 deletions

View File

@ -1124,6 +1124,7 @@ See https://github.com/ocaml-community/utop for configuration information."))
:keymap (let ((map (make-sparse-keymap))) :keymap (let ((map (make-sparse-keymap)))
(define-key map (kbd "C-c C-s") #'utop) (define-key map (kbd "C-c C-s") #'utop)
(define-key map (kbd "C-x C-e") #'utop-eval-phrase) (define-key map (kbd "C-x C-e") #'utop-eval-phrase)
(define-key map (kbd "C-c C-e") #'utop-eval-phrase)
(define-key map (kbd "C-x C-r") #'utop-eval-region) (define-key map (kbd "C-x C-r") #'utop-eval-region)
(define-key map (kbd "C-c C-b") #'utop-eval-buffer) (define-key map (kbd "C-c C-b") #'utop-eval-buffer)
(define-key map (kbd "C-c C-k") #'utop-kill) (define-key map (kbd "C-c C-k") #'utop-kill)