diff options
author | Sean Whitton <spwhitton@spwhitton.name> | 2021-02-08 07:52:16 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-02-08 07:52:16 +0100 |
commit | 657641fb83b927a8da18bccfcf843b0a3b720755 (patch) | |
tree | c00f6da13c6aa67799d8fd0399b4ea676c240a3f /lisp/bindings.el | |
parent | 798bd1273c5ba85427952e6eee22c8eeda58e85e (diff) | |
download | emacs-657641fb83b927a8da18bccfcf843b0a3b720755.tar.gz emacs-657641fb83b927a8da18bccfcf843b0a3b720755.tar.bz2 emacs-657641fb83b927a8da18bccfcf843b0a3b720755.zip |
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).
Diffstat (limited to 'lisp/bindings.el')
-rw-r--r-- | lisp/bindings.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el index 9462468b1b0..2f4bab11cf5 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -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) |