]> git.eshelyaron.com Git - emacs.git/commitdiff
Recommend using 'keymap-global-set' in Commentaries
authorStefan Kangas <stefankangas@gmail.com>
Fri, 14 Mar 2025 23:09:45 +0000 (00:09 +0100)
committerEshel Yaron <me@eshelyaron.com>
Sat, 15 Mar 2025 17:12:51 +0000 (18:12 +0100)
* lisp/bs.el, lisp/calculator.el, lisp/cedet/data-debug.el:
* lisp/help-at-pt.el, lisp/hilit-chg.el, lisp/mail/mspools.el:
* lisp/mh-e/mh-e.el, lisp/mouse-copy.el, lisp/mouse-drag.el:
* lisp/net/browse-url.el, lisp/net/webjump.el, lisp/printing.el:
* lisp/progmodes/cfengine.el, lisp/progmodes/ebnf2ps.el:
* lisp/ps-print.el, lisp/repeat.el, lisp/term/wyse50.el:
* lisp/term/x-win.el, lisp/vcursor.el, lisp/woman.el:
Recommend using 'keymap-global-set' instead of 'global-set-key'.

(cherry picked from commit 679ad95a67fbecafd203c9e7f55547a312b3833b)

18 files changed:
lisp/bs.el
lisp/help-at-pt.el
lisp/hilit-chg.el
lisp/mail/mspools.el
lisp/mouse-copy.el
lisp/mouse-drag.el
lisp/net/browse-url.el
lisp/net/webjump.el
lisp/printing.el
lisp/progmodes/cfengine.el
lisp/progmodes/ebnf2ps.el
lisp/ps-print.el
lisp/repeat.el
lisp/term/wyse50.el
lisp/term/x-win.el
lisp/textmodes/table.el
lisp/vcursor.el
lisp/woman.el

index 75cea1bd5b6423ab69d96b9a557a32f12355a375..c2022185860bc9a462c746d8592a7701b41a9948 100644 (file)
@@ -73,8 +73,8 @@
 ;; This package offers two functions for buffer cycling.  If you want to cycle
 ;; through buffer list you can use `bs-cycle-next' or `bs-cycle-previous'.
 ;; Bind these function to a key like
-;;   (global-set-key [(f9)]   'bs-cycle-previous)
-;;   (global-set-key [(f10)]  'bs-cycle-next)
+;;   (keymap-global-set "<f9>"  #'bs-cycle-previous)
+;;   (keymap-global-set "<f10>" #'bs-cycle-next)
 ;;
 ;; Both functions use a special subset of all buffers for cycling to avoid
 ;; to go through internal buffers like *Messages*.
index 47732c7e8fdde2030d26353f829c622e6b8d5dfb..64f7b0de017de431826b3eabc59c622c998a1d52 100644 (file)
@@ -40,8 +40,8 @@
 ;;
 ;; Suggested key bindings:
 ;;
-;; (global-set-key [C-tab] 'scan-buf-next-region)
-;; (global-set-key [C-M-tab] 'scan-buf-previous-region)
+;; (keymap-global-set "C-<tab>" #'scan-buf-next-region)
+;; (keymap-global-set "C-M-<tab>" #'scan-buf-previous-region)
 
 ;;; Code:
 
index 93ced6a5484ce6b8d593a1d9697d20a028e4726e..28a4b5a69071832b4c90222d79c670e9f4969eff 100644 (file)
 
 
 ;;     Possible bindings:
-;; (global-set-key '[C-right] #'highlight-changes-next-change)
-;; (global-set-key '[C-left]  #'highlight-changes-previous-change)
+;; (keymap-global-set "C-<right>" #'highlight-changes-next-change)
+;; (keymap-global-set "C-<left>"  #'highlight-changes-previous-change)
 ;;
 ;;     Other interactive functions (that could be bound if desired):
 ;; `highlight-changes-mode'
index df956e8f58add71bb06ef8c8a62ca486347d12bc..d9f54642029102ea2201e8f878a869b475b06d3f 100644 (file)
@@ -62,8 +62,8 @@
 
 ;; Extras.
 ;;
-;; (global-set-key '[S-f1] 'mspools-show) ;Bind mspools-show to Shift F1.
-;; (setq mspools-update t)                ;Automatically update buffer.
+;; (keymap-global-set "S-<f1>" #'mspools-show) ;Bind mspools-show to Shift F1.
+;; (setopt mspools-update t)                ;Automatically update buffer.
 
 ;; Interface with the mail filter.
 ;; We assume that the mail filter drops new mail into the spool
index d022d57796bea6ddbd0c59225e74b776199d5948..cbd3f360c3e8e0ffc3d671d44e5cabda573dad28 100644 (file)
 ;; for ``one-click scrolling''.
 ;;
 ;; To use mouse-copy, place the following in your init file:
-;;     (require 'mouse-copy)
-;;     (global-set-key [M-down-mouse-1] 'mouse-drag-secondary-pasting)
-;;     (global-set-key [M-S-down-mouse-1] 'mouse-drag-secondary-moving)
-;;
-;; (These definitions override the old binding of M-mouse-1 to
-;; mouse-drag-secondary.  I find I don't use that command much so its
-;; loss is not important, and it can be made up with a M-mouse-1
-;; followed by a M-mouse-3.  I personally reserve M-mouse bindings
+;;     (autoload 'mouse-drag-secondary-pasting "mouse-copy")
+;;     (autoload 'mouse-drag-secondary-moving "mouse-copy")
+;;     (keymap-global-set "M-<down-mouse-1>" #'mouse-drag-secondary-pasting)
+;;     (keymap-global-set "M-S-<down-mouse-1>" #'mouse-drag-secondary-moving)
+;;
+;; (These definitions override the old binding of `M-<mouse-1>' to
+;; `mouse-drag-secondary'.  I find I don't use that command much so its
+;; loss is not important, and it can be made up with a `M-<mouse-1>'
+;; followed by a `M-mouse-3'.  I personally reserve M-mouse bindings
 ;; for my window manager and bind everything to C-mouse.)
 ;;
 ;;
index e86c0f3590c5ec5624c9ee70dd9d0cca32f250a1..bb27994bbca7a77aa60fd4f44473b64713a0627d 100644 (file)
@@ -48,9 +48,9 @@
 ;;
 ;; To use mouse-drag, place the following in your init file:
 ;; -either-
-;;     (global-set-key [down-mouse-2] 'mouse-drag-throw)
+;;     (keymap-global-set "<down-mouse-2>" #'mouse-drag-throw)
 ;; -or-
-;;     (global-set-key [down-mouse-2] 'mouse-drag-drag)
+;;     (keymap-global-set "<down-mouse-2>" #'mouse-drag-drag)
 ;;
 ;;
 ;;
index 1a0612bba89c82e331daa813a3fab5759e43a89b..02d25b0ade47f470ceee70cc94458741eefc8dbf 100644 (file)
@@ -71,7 +71,7 @@
 ;; M-x browse-url
 
 ;; To display a URL by shift-clicking on it, put this in your init file:
-;;      (global-set-key [S-mouse-2] 'browse-url-at-mouse)
+;;      (keymap-global-set "S-<mouse-2>" 'browse-url-at-mouse)
 ;; (Note that using Shift-mouse-1 is not desirable because
 ;; that event has a standard meaning in Emacs.)
 
index 4afd9b292c547317d6a73f79dda70088e7ec0076..9f0a8d0afbd84b1e5f4f3b26a133600cd5788286 100644 (file)
 
 ;; You may wish to add something like the following to your init file:
 ;;
-;;   (global-set-key "\C-cj" 'webjump)
-;;   (setq webjump-sites
-;;         (append '(
-;;                   ("My Home Page" . "www.someisp.net/users/joebobjr/")
-;;                   ("Pop's Site"   . "www.joebob-and-son.com/")
-;;                   )
-;;                 webjump-sample-sites))
+;;   (keymap-global-set "C-c j" #'webjump)
+;;   (setopt webjump-sites
+;;           (append '(
+;;                     ("My Home Page" . "www.someisp.net/users/joebobjr/")
+;;                     ("Pop's Site"   . "www.joebob-and-son.com/")
+;;                     )
+;;                   webjump-sample-sites))
 ;;
 ;; The above loads this package, binds `C-c j' to invoke WebJump, and adds your
 ;; personal favorite sites to the hotlist.
index c84ee54eb7fba790263a8eba5c666ce06dbf915d..99408eef6fee7ebcfe3bc7500ac5d701cd94ee65 100644 (file)
 ;;
 ;; Current global keyboard mapping is:
 ;;
-;;    (global-set-key [print]     'pr-ps-fast-fire)
-;;    (global-set-key [M-print]   'pr-ps-mode-using-ghostscript)
-;;    (global-set-key [S-print]   'pr-ps-mode-using-ghostscript)
-;;    (global-set-key [C-print]   'pr-txt-fast-fire)
-;;    (global-set-key [C-M-print] 'pr-txt-fast-fire)
+;;    (keymap-global-set "<print>"     'pr-ps-fast-fire)
+;;    (keymap-global-set "M-<print>"   'pr-ps-mode-using-ghostscript)
+;;    (keymap-global-set "S-<print>"   'pr-ps-mode-using-ghostscript)
+;;    (keymap-global-set "C-<print>"   'pr-txt-fast-fire)
+;;    (keymap-global-set "C-M-<print>" 'pr-txt-fast-fire)
 ;;
 ;; As a suggestion of global keyboard mapping for some `printing' commands:
 ;;
-;;    (global-set-key "\C-ci"  'pr-interface)
-;;    (global-set-key "\C-cbp" 'pr-ps-buffer-print)
-;;    (global-set-key "\C-cbx" 'pr-ps-buffer-preview)
-;;    (global-set-key "\C-cbb" 'pr-ps-buffer-using-ghostscript)
-;;    (global-set-key "\C-crp" 'pr-ps-region-print)
-;;    (global-set-key "\C-crx" 'pr-ps-region-preview)
-;;    (global-set-key "\C-crr" 'pr-ps-region-using-ghostscript)
+;;    (keymap-global-set "C-c i"   'pr-interface)
+;;    (keymap-global-set "C-c b p" 'pr-ps-buffer-print)
+;;    (keymap-global-set "C-c b x" 'pr-ps-buffer-preview)
+;;    (keymap-global-set "C-c b b" 'pr-ps-buffer-using-ghostscript)
+;;    (keymap-global-set "C-c r p" 'pr-ps-region-print)
+;;    (keymap-global-set "C-c r x" 'pr-ps-region-preview)
+;;    (keymap-global-set "C-c r r" 'pr-ps-region-using-ghostscript)
 ;;
 ;;
 ;; Options
@@ -2969,13 +2969,13 @@ Calls `pr-update-menus' to adjust menus."
 (global-set-key [(control meta print)] 'pr-txt-fast-fire)
 
 ;;; You can also use something like:
-;;;(global-set-key "\C-ci"  'pr-interface)
-;;;(global-set-key "\C-cbp" 'pr-ps-buffer-print)
-;;;(global-set-key "\C-cbx" 'pr-ps-buffer-preview)
-;;;(global-set-key "\C-cbb" 'pr-ps-buffer-using-ghostscript)
-;;;(global-set-key "\C-crp" 'pr-ps-region-print)
-;;;(global-set-key "\C-crx" 'pr-ps-region-preview)
-;;;(global-set-key "\C-crr" 'pr-ps-region-using-ghostscript)
+;;;(keymap-global-set "C-c i"   'pr-interface)
+;;;(keymap-global-set "C-c b p" 'pr-ps-buffer-print)
+;;;(keymap-global-set "C-c b x" 'pr-ps-buffer-preview)
+;;;(keymap-global-set "C-c b b" 'pr-ps-buffer-using-ghostscript)
+;;;(keymap-global-set "C-c r p" 'pr-ps-region-print)
+;;;(keymap-global-set "C-c r x" 'pr-ps-region-preview)
+;;;(keymap-global-set "C-c r r" 'pr-ps-region-using-ghostscript)
 
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index 9d9d1e8aa9d5bca1e2f68ed2ba155b508a6106c8..acdb9a10cf71997ea1be11eb4ac8049790a5e82f 100644 (file)
@@ -52,7 +52,7 @@
 ;; the policy, it's a quick way to make it more legible without
 ;; manually reindenting it.  For instance:
 
-;; (global-set-key [(control f4)] 'cfengine3-reformat-json-string)
+;; (keymap-global-set "C-<f4>" 'cfengine3-reformat-json-string)
 
 ;; This is not the same as the mode written by Rolf Ebert
 ;; <ebert@waporo.muc.de>, distributed with cfengine-2.0.5.  It does
index 0147707f80d1e4e37ddda5b530207c76aa4f6da7..d5a10eab2a8767d6fd938177eb3c082980457ec4 100644 (file)
 ;;
 ;; Any of the `ebnf-' commands can be bound to keys.  Here are some examples:
 ;;
-;;    (global-set-key 'f22 'ebnf-print-buffer) ;f22 is prsc
-;;    (global-set-key '(shift f22) 'ebnf-print-region)
-;;    (global-set-key '(control f22) 'ebnf-despool)
+;;    (keymap-global-set "<f22>" #'ebnf-print-buffer) ;f22 is prsc
+;;    (keymap-global-set "S-<f22>" #'ebnf-print-region)
+;;    (keymap-global-set "C-<f22>" #'ebnf-despool)
 ;;
 ;;
 ;; Invoking Ebnf2ps in Batch
index ba0d543bbcc82ee4648d0f7d4e44b9a9763ce416..53302a71efb67131b8e5caae23f13ce8d7bb7d97 100644 (file)
 ;; `ps-spool-buffer-with-faces', `ps-spool-region-with-faces', and
 ;; `ps-despool'.  Here are the bindings I use on my Sun 4 keyboard:
 ;;
-;;   (global-set-key 'f22 'ps-spool-buffer-with-faces) ;f22 is prsc
-;;   (global-set-key '(shift f22) 'ps-spool-region-with-faces)
-;;   (global-set-key '(control f22) 'ps-despool)
+;;   (keymap-global-set "<f22>" #'ps-spool-buffer-with-faces) ;f22 is prsc
+;;   (keymap-global-set "S-<f22>" #'ps-spool-region-with-faces)
+;;   (keymap-global-set "C-<f22>" #'ps-despool)
 ;;
 ;;
 ;; The Printer Interface
index b8f2c6715c143320252c64d51892f0f3510caab4..9a4336424bedc4fa4141b089be3ca4341b7da319 100644 (file)
@@ -54,8 +54,8 @@
 ;; correctly if `repeat' is invoked through a rebinding to a single keystroke
 ;; and the global variable repeat-on-final-keystroke is set to a value
 ;; that doesn't include that keystroke.  For example, the lines
-;;   (global-set-key "\C-z" 'repeat)
-;;   (setq repeat-on-final-keystroke "z")
+;;   (keymap-global-set "C-z" #'repeat)
+;;   (setopt repeat-on-final-keystroke "z")
 ;; in your .emacs would allow `edit-kbd-macro' to work correctly when C-z was
 ;; used in a keyboard macro to invoke `repeat', but would still allow C-x z
 ;; to be used for `repeat' elsewhere.  The real reason for documenting this
index e956ee120bcceb514a54679c915bf29b7a422689..875218d72693048e97304936961a043b32e11ac8 100644 (file)
@@ -145,14 +145,14 @@ M-r       M-x move-to-window-line, Funct up-arrow or down-arrow are similar"
   ;;         ;; By unsetting C-a and then binding it to a prefix, we
   ;;         ;; allow the rest of the function keys which start with C-a
   ;;         ;; to be recognized.
-  ;;         '(("\C-a" nil)
-  ;;           ("\C-k" nil)
-  ;;           ("\C-j" nil)
-  ;;           ("\C-l" nil)
-  ;;           ("\C-h" nil)
-  ;;           ("\er"  nil)))
-  ;;   (global-set-key (car key-definition)
-  ;;                   (nth 1 key-definition)))
+  ;;         '(("C-a"  nil)
+  ;;           ("C-k"  nil)
+  ;;           ("C-j"  nil)
+  ;;           ("C-l"  nil)
+  ;;           ("C-h"  nil)
+  ;;           ("M-r"  nil)))
+  ;;   (keymap-global-set (car key-definition)
+  ;;                      (nth 1 key-definition)))
   (fset 'enable-arrow-keys nil))
 
 (provide 'term/wyse50)
index 91b5bd5838affe88664f47b862e639d212829fbd..1863ff92c771dbcddfc54873715ab9cedb6a74e2 100644 (file)
@@ -1318,7 +1318,7 @@ This returns an error if any Emacs frames are X frames."
   ;; and turned the Emacs f10 back on.
   ;; ;; Motif normally handles f10 itself, so don't try to handle it a second time.
   ;; (if (featurep 'motif)
-  ;;     (global-set-key [f10] 'ignore))
+  ;;     (keymap-global-set "<f10>" 'ignore))
 
   ;; Enable CLIPBOARD copy/paste through menu bar commands.
   (menu-bar-enable-clipboard)
index 00362cb1e6c587d13792d9ecb10d0717f9fe9a23..aad14db6e95a9275cc06352f694d96dfbc4a352f 100644 (file)
 ;;
 ;;   (add-hook 'table-cell-map-hook
 ;;     (lambda ()
-;;       (local-set-key [<key sequence>] '<function>)))
+;;       (keymap-local-set "<key sequence>" '<function>)))
 ;;
 ;; Adding the above to your init file is a common way to customize a
 ;; mode specific keymap.  However it does not work for this package.
index 645102c198b4a35561c1e45a7d5f055fd5010609..ff381c01b1280ca0afe51b6cf402421b30fa045b 100644 (file)
 ;; In addition to any other bindings, vcursor-map contains key definitions
 ;; for handling the vcursor.  You should assign this to a prefix key
 ;; in the usual way, e.g.
-;;      (global-set-key [f14] vcursor-map)
+;;      (keymap-global-set "<f14>" vcursor-map)
 ;; and also as usual \C-h in this map will list the key definitions, which
 ;; are designed to be easy to remember.
 ;;
index ac2c9225527f70f40835c7463e7b03a3b28b363a..c182afbf3136c24ecea4ab843f71b32bd2c59678 100644 (file)
 ;; The variable `woman-use-topic-at-point' can be rebound locally,
 ;; which may be useful to provide special private key bindings, e.g.
 
-;;  (global-set-key "\C-cw"
-;;               (lambda ()
-;;                 (interactive)
-;;                 (let ((woman-use-topic-at-point t))
-;;                   (woman)))))
-
+;; (keymap-global-set "C-c w"
+;;                    (lambda ()
+;;                      (interactive)
+;;                      (let ((woman-use-topic-at-point t))
+;;                        (woman)))))
 
 ;; Customization, Hooks and Imenu
 ;; ==============================