diff options
author | Thanos Apollo <[email protected]> | 2024-02-21 17:21:02 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-02-21 17:21:02 +0200 |
commit | 7cf1ffc223e9dd627ab4bab0fc85166d0980763a (patch) | |
tree | 25c0d1123d2dc966b47278443bc27509058589ae /gnosis.el | |
parent | 7ba01f65dc94f2475cd00a0774bb77a82b59de34 (diff) |
gnosis:(dashboard) Add note type
Diffstat (limited to 'gnosis.el')
-rw-r--r-- | gnosis.el | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1361,7 +1361,7 @@ name and all notes formatted as nested lists" ;; Dashboard (defun gnosis-dashboard-output-note (id) "Output note contents formatted for gnosis dashboard." - (cl-loop for item in (append (gnosis-select '[main options answer tags] 'notes `(= id ,id) t) + (cl-loop for item in (append (gnosis-select '[main options answer tags type] 'notes `(= id ,id) t) (gnosis-select 'suspend 'review-log `(= id ,id) t)) if (listp item) collect (mapconcat #'identity item ", ") @@ -1395,7 +1395,8 @@ name and all notes formatted as nested lists" ("Options" 20 t) ("Answer" 25 t) ("Tags" 25 t) - ("Suspend" 5 t)]) + ("Type" 10 t) + ("Suspend" 2 t)]) (setq tabulated-list-padding 2 tabulated-list-sort-key nil) (tabulated-list-init-header)) |