[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/org-gnosis 63326abf32 43/63: find: Always enable org-gn
From: |
ELPA Syncer |
Subject: |
[elpa] externals/org-gnosis 63326abf32 43/63: find: Always enable org-gnosis-mode. |
Date: |
Mon, 10 Feb 2025 15:59:18 -0500 (EST) |
branch: externals/org-gnosis
commit 63326abf32e5da0bb9575640e698113cd9350927
Author: Thanos Apollo <public@thanosapollo.org>
Commit: Thanos Apollo <public@thanosapollo.org>
find: Always enable org-gnosis-mode.
---
org-gnosis.el | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/org-gnosis.el b/org-gnosis.el
index b5ea284d35..c573ddbb43 100644
--- a/org-gnosis.el
+++ b/org-gnosis.el
@@ -358,13 +358,12 @@ DIRECTORY."
(directory (or directory org-gnosis-dir))
(node-template (org-gnosis-select-template org-gnosis-node-templates)))
(cond ((null file)
- (org-gnosis--create-file title nil node-template)
- (org-gnosis-mode))
+ (org-gnosis--create-file title nil node-template))
((file-exists-p (expand-file-name file directory))
(find-file
(expand-file-name file directory))
- (ignore-errors (org-id-goto id))
- (org-gnosis-mode)))))
+ (ignore-errors (org-id-goto id))))
+ (org-gnosis-mode)))
;;;###autoload
(defun org-gnosis-find-by-tag (&optional tag)
@@ -432,7 +431,7 @@ If node does not exist, create it."
(defun org-gnosis-journal-find (&optional date)
"Find journal entry for DATE."
(interactive)
- (let* ((prompt "Select journal entry")
+ (let* ((prompt "Select journal entry: ")
(date (or date (org-gnosis--find
prompt
(org-gnosis-select '[date tags] 'journal)
@@ -448,7 +447,8 @@ If node does not exist, create it."
(let* ((node (org-gnosis--find "Select journal entry: "
(org-gnosis-select '[date tags] 'journal '1=1)
(org-gnosis-select 'date 'journal '1=1)))
- (node-id (concat "id:" (car (org-gnosis-select 'id 'journal `(= ,node
date) '1=1)))))
+ (node-id (concat "id:"
+ (car (org-gnosis-select 'id 'journal `(= ,node date)
'1=1)))))
(org-insert-link nil node-id node)))
;;;###autoload
- [elpa] externals/org-gnosis 62be48df44 45/63: get-id: Rewrite using recursion., (continued)
- [elpa] externals/org-gnosis 62be48df44 45/63: get-id: Rewrite using recursion., ELPA Syncer, 2025/02/10
- [elpa] externals/org-gnosis f4d43a0278 49/63: [Rewrite] goto-id: Add support for journals., ELPA Syncer, 2025/02/10
- [elpa] externals/org-gnosis e8de093180 33/63: Add custom goto-id func & async sync function., ELPA Syncer, 2025/02/10
- [elpa] externals/org-gnosis da222a3a16 54/63: find: Add optional arg for template input., ELPA Syncer, 2025/02/10
- [elpa] externals/org-gnosis 0573178562 58/63: Add custom bullet-point-char & todo-files., ELPA Syncer, 2025/02/10
- [elpa] externals/org-gnosis 7f68a27e4f 41/63: db: Remove extra table deletion., ELPA Syncer, 2025/02/10
- [elpa] externals/org-gnosis 9e0d7da6a1 21/63: Add insert-tag, ELPA Syncer, 2025/02/10
- [elpa] externals/org-gnosis 05ecfc3fe6 23/63: [fix] Adjust node titles, ELPA Syncer, 2025/02/10
- [elpa] externals/org-gnosis ff2332d87a 10/63: db: Update schemata & syncing, ELPA Syncer, 2025/02/10
- [elpa] externals/org-gnosis 4809388113 30/63: Refactor parsing for links & Add journal level entries., ELPA Syncer, 2025/02/10
- [elpa] externals/org-gnosis 63326abf32 43/63: find: Always enable org-gnosis-mode.,
ELPA Syncer <=
- [elpa] externals/org-gnosis 0fea7521ed 42/63: create-file: fix insertion of template., ELPA Syncer, 2025/02/10
- [elpa] externals/org-gnosis 7851136732 44/63: schemata: Use title for journals., ELPA Syncer, 2025/02/10
- [elpa] externals/org-gnosis 2594216dba 56/63: Update README, ELPA Syncer, 2025/02/10
- [elpa] externals/org-gnosis 787c83f387 59/63: [Feature] Add todos for journals., ELPA Syncer, 2025/02/10
- [elpa] externals/org-gnosis b484e01a5b 15/63: schemata: Add unique links, ELPA Syncer, 2025/02/10
- [elpa] externals/org-gnosis 604a57a702 31/63: [Feature] Add denote notes support., ELPA Syncer, 2025/02/10