summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJSDurand <mmemmew@gmail.com>2023-06-15 15:18:43 +0800
committerJSDurand <mmemmew@gmail.com>2023-06-15 15:18:43 +0800
commit8a11e4e714fb8f6ae93eb653056caf186c782b2d (patch)
tree9819e9224665e89d64804784a80ec4cd1932e78c
parenta5bd7a08189d5c7237be15bed0ddfcb7b1e1db54 (diff)
dashboard: bind 'L' to list registers.
* dashboard.el (dashboard-mode-map): Bind 'L' to `rlist-list-registers`. This is quite convenient.
-rw-r--r--dashboard.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/dashboard.el b/dashboard.el
index b2ddede..544bd3d 100644
--- a/dashboard.el
+++ b/dashboard.el
@@ -74,6 +74,7 @@ The main purpose is to provide a dedicated keymap to access
common functionalities more conveniently.")
(define-key dashboard-mode-map (vector ?l) #'blist)
+(define-key dashboard-mode-map (vector ?L) #'rlist-list-registers)
(define-key dashboard-mode-map (vector ?b) #'bookmark-jump)
(define-key dashboard-mode-map (vector ?T) #'modeline-toggle)
(define-key dashboard-mode-map (vector ?t)