]> git.eshelyaron.com Git - emacs.git/commitdiff
Move Info-goto-node-web to "G"
authorLars Ingebrigtsen <larsi@gnus.org>
Fri, 12 Nov 2021 03:31:33 +0000 (04:31 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Fri, 12 Nov 2021 03:35:46 +0000 (04:35 +0100)
* lisp/info.el (Info-mode-map): Change the Info-goto-node-web
binding to "G" for symmetry with "Info-goto-node".

etc/NEWS
lisp/info.el

index 5439964891e02cbf7a3e8ff82a6670d1c21fe279..0057fbdcbfecedbb11fd79e1ca2b7a52fbb67664 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -213,7 +213,7 @@ change the terminal used on a remote host.
 ** Info
 
 ---
-*** New command 'Info-goto-node-web' and key binding 'W'.
+*** New command 'Info-goto-node-web' and key binding 'G'.
 This will take you to the gnu.org web server's version of the current
 info node.  This command only works for the Emacs and Emacs Lisp manuals.
 
index 28f25d0e0d4cdfbbcad5468d238a4a6310ec3a99..cd4c867f4e639bd88d783a38c4e041e19234f4aa 100644 (file)
@@ -4086,6 +4086,7 @@ If FORK is non-nil, it is passed to `Info-goto-node'."
     (define-key map "e" 'end-of-buffer)
     (define-key map "f" 'Info-follow-reference)
     (define-key map "g" 'Info-goto-node)
+    (define-key map "G" 'Info-goto-node-web)
     (define-key map "h" 'Info-help)
     ;; This is for compatibility with standalone info (>~ version 5.2).
     ;; Though for some time, standalone info had H and h reversed.
@@ -4107,7 +4108,6 @@ If FORK is non-nil, it is passed to `Info-goto-node'."
     (define-key map "T" 'Info-toc)
     (define-key map "u" 'Info-up)
     ;; `w' for consistency with `dired-copy-filename-as-kill'.
-    (define-key map "W" 'Info-goto-node-web)
     (define-key map "w" 'Info-copy-current-node-name)
     (define-key map "c" 'Info-copy-current-node-name)
     ;; `^' for consistency with `dired-up-directory'.