mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
Bind clone-buffer to C-x x n
* lisp/bindings.el (ctl-x-x-map): Bind clone-buffer. * etc/NEWS: Document the change (bug#46369).
This commit is contained in:
parent
798bd1273c
commit
657641fb83
2 changed files with 4 additions and 2 deletions
5
etc/NEWS
5
etc/NEWS
|
|
@ -241,8 +241,9 @@ search buffer due to too many matches being highlighted.
|
|||
** A new keymap for buffer actions has been added.
|
||||
The 'C-x x' keymap now holds keystrokes for various buffer-oriented
|
||||
commands. The new keystrokes are 'C-x x g' ('revert-buffer'),
|
||||
'C-x x r' ('rename-buffer'), 'C-x x u' ('rename-uniquely'),
|
||||
'C-x x i' ('insert-buffer') and 'C-x x t' ('toggle-truncate-lines').
|
||||
'C-x x r' ('rename-buffer'), 'C-x x u' ('rename-uniquely'), 'C-x x n'
|
||||
('clone-buffer'), 'C-x x i' ('insert-buffer') and 'C-x x t'
|
||||
('toggle-truncate-lines').
|
||||
|
||||
|
||||
* Editing Changes in Emacs 28.1
|
||||
|
|
|
|||
|
|
@ -1418,6 +1418,7 @@ if `inhibit-field-text-motion' is non-nil."
|
|||
(define-key map "g" #'revert-buffer)
|
||||
(define-key map "r" #'rename-buffer)
|
||||
(define-key map "u" #'rename-uniquely)
|
||||
(define-key map "n" #'clone-buffer)
|
||||
(define-key map "i" #'insert-buffer)
|
||||
(define-key map "t" #'toggle-truncate-lines)
|
||||
map)
|
||||
|
|
|
|||
Loading…
Reference in a new issue