diff options
author | JSDurand <mmemmew@gmail.com> | 2024-02-23 15:02:46 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2024-02-23 15:02:46 +0800 |
commit | 781b48ae27fe55d576da63345681060999668a8c (patch) | |
tree | 5a22e6b54674f5b344e3ed31eda3a2200144fcdf /dashboard.el | |
parent | 1b5ff45d09ac9c76c62c6df5d32df29a369105c0 (diff) |
dashboard: bind three keys
* dashboard.el (dashboard-mode-map): Bind the following for the sake
of convenience.
- f: find-file
- F: find-file-other-tab
- h: durand-ibuffer
Diffstat (limited to 'dashboard.el')
-rw-r--r-- | dashboard.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dashboard.el b/dashboard.el index a86981e..4e1914e 100644 --- a/dashboard.el +++ b/dashboard.el @@ -83,6 +83,9 @@ common functionalities more conveniently.") (define-key m (vector ?t) #'durand-view-timers-or-temps) (define-key m (vector ?o) #'durand-open-object) (define-key m (vector ?g) #'gnus) + (define-key m (vector ?h) #'durand-ibuffer) + (define-key m (vector ?f) #'find-file) + (define-key m (vector ?F) #'find-file-other-tab) (define-key m (vector ?a) #'dashboard-org-agenda) (define-key m (vector ?c) #'dashboard-clear) (define-key m (vector ?C) #'dashboard-org-capture) |