]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/window.el (window-prefix-map): Bind C-x w q to quit-window (bug#13167)
authorJuri Linkov <juri@linkov.net>
Sat, 13 Jan 2024 18:16:42 +0000 (20:16 +0200)
committerEshel Yaron <me@eshelyaron.com>
Sat, 13 Jan 2024 18:26:19 +0000 (19:26 +0100)
(cherry picked from commit 76904626b36910b511d3b0a3e56cc80af90d9361)

lisp/window.el

index 6f70d6b3331bb959768e39e9a147648514f9f01f..a32aabce378d5b81fe83cdf0aed360bb5487581d 100644 (file)
@@ -10808,7 +10808,8 @@ Used in `repeat-mode'."
   "^ f" #'tear-off-window
   "^ t" #'tab-window-detach
   "-" #'fit-window-to-buffer
-  "0" #'delete-windows-on)
+  "0" #'delete-windows-on
+  "q" #'quit-window)
 (define-key ctl-x-map "w" window-prefix-map)
 
 (provide 'window)