all repos — archive/dotfiles @ 72aa9219773cb0717c4f27a28056c4fef5ce2e6a

Superseded by nixfiles

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
commit

72aa9219773cb0717c4f27a28056c4fef5ce2e6a

parent

f26545a8cb75a4aeb0773ac309d8145aeb087d1d

1 files changed, 12 insertions(+), 0 deletions(-)

jump to
M emacs/init.elemacs/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