diff options
author | Thanos Apollo <[email protected]> | 2024-08-03 19:14:54 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-08-03 19:14:54 +0300 |
commit | 0349a8d9321b6a9a2981557991e06b463546a8f0 (patch) | |
tree | 5642ee578d24fcf805d24d07681db3e6b576f973 | |
parent | 38ed71aedcfca88a3adbe08c7b686292aacf2c39 (diff) |
Rewrite gnosis-dashboard-menu.
* Add new values and create a 2 column layout.
-rw-r--r-- | gnosis-dashboard.el | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gnosis-dashboard.el b/gnosis-dashboard.el index 2eeb0a2..e13809a 100644 --- a/gnosis-dashboard.el +++ b/gnosis-dashboard.el @@ -496,8 +496,13 @@ DASHBOARD-TYPE: either 'Notes' or 'Decks' to display the respective dashboard." "Transient buffer for gnosis dashboard interactions." [["Actions" ("r" "Review" gnosis-review) - ("a" "Add note" gnosis-add-note)] - ["Dashboard" ("s" "Search" gnosis-dashboard--search)]]) + ("a" "Add note" gnosis-add-note) + ("q" "Quit" quit-window)] + ["Notes" + ("s" "Search" gnosis-dashboard-suffix-query) + ("n" "Notes" (lambda () (interactive) (gnosis-dashboard-output-notes (gnosis-collect-note-ids)))) + ("d" "Decks" gnosis-dashboard-suffix-decks) + ("t" "Tags" (lambda () (interactive) (gnosis-dashboard-output-tags)))]]) ;; TODO: Create a dashboard utilizing widgets ;;;###autoload |