summaryrefslogtreecommitdiff
path: root/lisp/window.el
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-09-14 09:49:27 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-09-14 16:03:50 -0700
commit30ca49c8f64b73f991d94b10afcfc0e2d592fe6a (patch)
treebf3f6a99ffc0c46d4b6984fd09af83b74f9de3c0 /lisp/window.el
parent8c73ed0ec3328d4108e3084fc0dabdae8bb782a7 (diff)
downloademacs-30ca49c8f64b73f991d94b10afcfc0e2d592fe6a.tar.gz
emacs-30ca49c8f64b73f991d94b10afcfc0e2d592fe6a.tar.bz2
emacs-30ca49c8f64b73f991d94b10afcfc0e2d592fe6a.zip
Use '^' key for detach command bindings
* lisp/tab-bar.el (tab-prefix-map): Move tear-off-window to C-x w ^ f. Bind tab-window-detach to C-x w ^ t. * lisp/window.el (window-prefix-map): Bind tab-detach to C-x t ^ f.
Diffstat (limited to 'lisp/window.el')
-rw-r--r--lisp/window.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/window.el b/lisp/window.el
index d5f42dd10b4..905803b19e6 100644
--- a/lisp/window.el
+++ b/lisp/window.el
@@ -10593,7 +10593,8 @@ displaying that processes's buffer."
"2" #'split-root-window-below
"3" #'split-root-window-right
"s" #'window-toggle-side-windows
- "f" #'tear-off-window
+ "^ f" #'tear-off-window
+ "^ t" #'tab-window-detach
"-" #'fit-window-to-buffer
"0" #'delete-windows-on)
(define-key ctl-x-map "w" window-prefix-map)