diff options
author | Juri Linkov <juri@linkov.net> | 2020-07-01 00:30:18 +0300 |
---|---|---|
committer | Juri Linkov <juri@linkov.net> | 2020-07-01 00:30:18 +0300 |
commit | e98ddd6fc1626a7417a76a4ce51c4591731d1c26 (patch) | |
tree | 27ef8cb8c7494a1813d2043dde429b481c3edd8f /lisp/window.el | |
parent | bc8089a3fa11161428c51439fd3b26fd6583345d (diff) | |
download | emacs-e98ddd6fc1626a7417a76a4ce51c4591731d1c26.tar.gz |
Bind 'C-x 4 1' to 'same-window-prefix' and document new commands (bug#41691)
* lisp/window.el (ctl-x-4-map): Bind 'C-x 4 1' to 'same-window-prefix'.
* doc/emacs/windows.texi (Pop Up Window): Add 'C-x 4 4' and 'C-x 4 1'.
* doc/emacs/frames.texi (Creating Frames): Add 'C-x 5 5'.
(Tab Bars): Add 'C-x t t'.
Diffstat (limited to 'lisp/window.el')
-rw-r--r-- | lisp/window.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/window.el b/lisp/window.el index d499f9ab99a..675aff041b1 100644 --- a/lisp/window.el +++ b/lisp/window.el @@ -10168,6 +10168,7 @@ displaying that processes's buffer." (define-key ctl-x-map "-" 'shrink-window-if-larger-than-buffer) (define-key ctl-x-map "+" 'balance-windows) (define-key ctl-x-4-map "0" 'kill-buffer-and-window) +(define-key ctl-x-4-map "1" 'same-window-prefix) (define-key ctl-x-4-map "4" 'other-window-prefix) ;;; window.el ends here |