diff options
author | JSDurand <mmemmew@gmail.com> | 2023-05-29 10:15:38 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2023-05-29 10:15:38 +0800 |
commit | b02ab1c8f22807197f40ff244a0262346952c2ca (patch) | |
tree | 0f68d4e45310f58254e63bd0ce4830649bfd2e74 | |
parent | 9e0e5bf75e6f0956e64e760dc02eb18f14a23770 (diff) |
dashboard: delete unused bind that shadows
* dashboard.el (dashboard-mode-map): `org-store-link` is useless in
the dashboard buffer, and it shadows the useful key 'l'.
-rw-r--r-- | dashboard.el | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/dashboard.el b/dashboard.el index c6a6ab5..3e6be00 100644 --- a/dashboard.el +++ b/dashboard.el @@ -80,7 +80,6 @@ common functionalities more conveniently.") (define-key dashboard-mode-map (vector ?g) #'gnus) (define-key dashboard-mode-map (vector ?a) #'dashboard-org-agenda) (define-key dashboard-mode-map (vector ?c) #'dashboard-org-capture) -(define-key dashboard-mode-map (vector ?l) #'dashboard-org-store-link) ;; load Org if not loaded already |