]> git.eshelyaron.com Git - emacs.git/commitdiff
Bind 'revert-buffer' to 'C-x g' globally
authorSean Whitton <spwhitton@spwhitton.name>
Tue, 2 Feb 2021 08:44:44 +0000 (09:44 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 2 Feb 2021 08:44:44 +0000 (09:44 +0100)
* lisp/bindings.el: Bind 'revert-buffer' to 'C-x g' globally.
* doc/emacs/files.texi: Replace 'M-x revert-buffer' with 'C-x g'.
* etc/NEWS: Document the change (bug#46151).

doc/emacs/files.texi
etc/NEWS
lisp/bindings.el

index ede382c146ce69f300ff5d7bfd3c516527bf8131..12ceac800efb4eb8523111161db27e1b8396ed34 100644 (file)
@@ -927,9 +927,9 @@ Manual}).  For customizations, see the Custom group @code{time-stamp}.
 
   If you have made extensive changes to a file-visiting buffer and
 then change your mind, you can @dfn{revert} the changes and go back to
-the saved version of the file.  To do this, type @kbd{M-x
-revert-buffer}.  Since reverting unintentionally could lose a lot of
-work, Emacs asks for confirmation first.
+the saved version of the file.  To do this, type @kbd{C-x g}.  Since
+reverting unintentionally could lose a lot of work, Emacs asks for
+confirmation first.
 
   The @code{revert-buffer} command tries to position point in such a
 way that, if the file was edited only slightly, you will be at
index fc3a3dafb8d7884bdb7148aa1676a5dd0ab44120..a376df62e33e4b60112b14e9775caeb1a39da15d 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -233,6 +233,9 @@ search string is at least this long.  'lazy-highlight-initial-delay'
 still applies for shorter search strings, which avoids flicker in the
 search buffer due to too many matches being highlighted.
 
++++
+** 'revert-buffer' is now bound to 'C-x g' globally.
+
 \f
 * Editing Changes in Emacs 28.1
 
index 43b62f9bbfce8a9e02ecd1eff83fec7a9d52baaa..9ea188d1a005e32913fe98155762855d5e65fda1 100644 (file)
@@ -1413,6 +1413,8 @@ if `inhibit-field-text-motion' is non-nil."
 
 (define-key ctl-x-map "z" 'repeat)
 
+(define-key ctl-x-map "g" #'revert-buffer)
+
 (define-key esc-map "\C-l" 'reposition-window)
 
 (define-key ctl-x-4-map "a" 'add-change-log-entry-other-window)