Emacs: add eval-and-replace and bind to C-c e
Alan Pearce alan@alanpearce.co.uk
Mon, 29 Jul 2013 14:08:53 +0100
1 files changed, 12 insertions(+), 0 deletions(-)
jump to
M emacs/init.el → emacs/init.el
@@ -972,6 +972,18 @@ (if p (init-narrow-to-section))) (add-hook 'emacs-lisp-mode-hook 'imenu-elisp-sections) +(defun eval-and-replace () + "Replace the preceding sexp with its value." + (interactive) + (backward-kill-sexp) + (condition-case nil + (prin1 (eval (read (current-kill 0))) + (current-buffer)) + (error (message "Invalid expression") + (insert (current-kill 0))))) + +(bind-key "C-c e" #'eval-and-replace) + ;;;; Programming (use-package auto-compile