diff options
author | Thanos Apollo <[email protected]> | 2024-02-20 13:31:27 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-02-20 13:31:27 +0200 |
commit | 730804a41aac213b6d438b56e47699e799b73161 (patch) | |
tree | f313fd7df209b19e9c2557af776e018b2ede8410 /gnosis.el | |
parent | 3b422a8573bd53cca74387ac79851a2022c2e748 (diff) |
Add gnosis-dashboard
Diffstat (limited to 'gnosis.el')
-rw-r--r-- | gnosis.el | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -1399,6 +1399,16 @@ review." tabulated-list-sort-key nil) (tabulated-list-init-header)) +;;;###autoload +(defun gnosis-dashboard () + "Display gnosis dashboard." + (interactive) + (pop-to-buffer "*gnosis-dashboard*" nil) + (gnosis-dashboard-mode) + (setq tabulated-list-entries + (gnosis-dashboard-output-notes)) + (tabulated-list-print t)) + (defun gnosis-db-init () "Create gnosis essential directories & database." (unless (length= (emacsql gnosis-db [:select name :from sqlite-master :where (= type table)]) 6) |