When I execute M-x eval-region with (+ 1 1) selected in emacs, I can not see the result 2 in the minibuffer . How can I see the result just like C-x C-e?
Try this function:
(defun my-eval-region (start end)
"Evaluate the region, printing the result to the minibuffer."
(interactive "r")
(eval-region start end t))
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With