diff options
author | Sean Whitton <spwhitton@spwhitton.name> | 2022-09-14 09:49:27 -0700 |
---|---|---|
committer | Sean Whitton <spwhitton@spwhitton.name> | 2022-09-14 16:03:50 -0700 |
commit | 30ca49c8f64b73f991d94b10afcfc0e2d592fe6a (patch) | |
tree | bf3f6a99ffc0c46d4b6984fd09af83b74f9de3c0 /lisp/window.el | |
parent | 8c73ed0ec3328d4108e3084fc0dabdae8bb782a7 (diff) | |
download | emacs-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.el | 3 |
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) |