diff options
author | Thanos Apollo <[email protected]> | 2024-12-20 02:52:35 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-12-20 07:24:43 +0200 |
commit | c27bc53bbea630b9f1ef380833ab9c7f5685606c (patch) | |
tree | 0d817316b47ba664f8b0e36cf61b45cbd9c20674 | |
parent | c10591738cd98a8a123f6a47071dd8b75bad0b0a (diff) |
-rw-r--r-- | org-gnosis.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/org-gnosis.el b/org-gnosis.el index 810e42c..22c644a 100644 --- a/org-gnosis.el +++ b/org-gnosis.el @@ -1,4 +1,4 @@ -;;; org-gnosis.el --- Roam-like Note Management System -*- lexical-binding: t; -*- +;;; org-gnosis.el --- Knowledge Management System -*- lexical-binding: t; -*- ;; Copyright (C) 2024-2025 Thanos Apollo @@ -29,6 +29,9 @@ ;; their data is saved in an SQLite databse, making it easier to ;; retrieve information and view relationships. +;; Functionality for journaling with journal entries in a separated +;; directory & customizable templates is also available. + ;;; Code: (require 'cl-lib) @@ -360,6 +363,7 @@ DIRECTORY." ;;;###autoload (defun org-gnosis-find-by-tag (&optional tag) "Find node under TAG." + (interactive) (let* ((tag (or tag (funcall org-gnosis-completing-read-func "Select tag: " (org-gnosis-select 'tag 'tags '1=1 t)))) |