bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#11977: 23.2; F5 and revert without confirmation


From: Romain Troit
Subject: bug#11977: 23.2; F5 and revert without confirmation
Date: Thu, 19 Jul 2012 22:14:21 +0200
User-agent: Mozilla/5.0 (X11; Linux i686; rv:13.0) Gecko/20120615 Thunderbird/13.0.1

Le 19/07/2012 00:55, Dmitry Gutov a écrit :
"Drew Adams" <drew.adams@oracle.com> writes:

>> This piece of code should really be part of emacs defaults !
>>
>> (defun revert-buffer-no-confirm ()
>>     "Revert buffer without confirmation."
>>     (interactive) (revert-buffer t t))
>> (define-key global-map [f5] 'revert-buffer-no-confirm)
>
> +1, at least for adding the definition.

Personally, I don't think it's a good suggestion:

1. A user might stumble on the command accidentally (that's what the
confirmation is for).

2. (define-key global-map [f5] 'revert-buffer-no-confirm)

is not that much shorter than

(define-key global-map [f5] (lambda () (interactive) (revert-buffer t t)))
2 : No indeed, it not much longer, but only you knows how to do this (and me now!)

Regards,

William





reply via email to

[Prev in Thread] Current Thread [Next in Thread]