I had to run the command revert-buffer
many times recently and really frustrated to say yes whenever emacs prompts this message Revert buffer from file abc.txt? (yes or no)
.
Is there anyway to auto say yes in this case?
If it's just for interactive usage, I'd define an alternative function:
(defun my-revert-buffer-noconfirm ()
"Call `revert-buffer' with the NOCONFIRM argument set."
(interactive)
(revert-buffer nil t))
Alternatively, as the revert-buffer
docstring tells you, take a look at the revert-without-query
variable, in case that's a nicer solution for you.
On a related side note, many people have the following line in their .emacs
that will make confirmations just a single keypress (just y or n):
(defalias 'yes-or-no-p 'y-or-n-p)
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