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:
parent
5049cd9344
commit
2bee980a9d
|
@ -1124,6 +1124,7 @@ See https://github.com/ocaml-community/utop for configuration information."))
|
|||
:keymap (let ((map (make-sparse-keymap)))
|
||||
(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-c C-e") #'utop-eval-phrase)
|
||||
(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-k") #'utop-kill)
|
||||
|
|
Loading…
Reference in New Issue