diff options
Diffstat (limited to 'emacs.d/init-bindings.el')
-rw-r--r-- | emacs.d/init-bindings.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/emacs.d/init-bindings.el b/emacs.d/init-bindings.el index d60c1cbc037b..214ef5b48921 100644 --- a/emacs.d/init-bindings.el +++ b/emacs.d/init-bindings.el @@ -30,6 +30,9 @@ ;; Start a new eshell even if one is active. (global-set-key (kbd "C-x M") (lambda () (interactive) (eshell t))) +;; Eval sexp and replace it with result +(global-set-key (kbd "C-c e") 'esk-eval-and-replace) + ;; Start a regular shell if you prefer that. (global-set-key (kbd "C-x C-m") 'shell) |