summaryrefslogtreecommitdiffhomepage
path: root/org/jao-org-notes.el
blob: 3e9abbb987728e86137afcfdf64113c8929f387c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
;;; jao-org-notes.el --- A simple system for org note taking  -*- lexical-binding: t; -*-

;; Copyright (C) 2020, 2021  jao

;; Author: jao <mail@jao.io>
;; Keywords: tools

;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.

;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with this program.  If not, see <https://www.gnu.org/licenses/>.

;;; Commentary:

;; A note per file

;;; Code:

(require 'org)

(defvar jao-org-notes-dir (expand-file-name "notes" org-directory))

(defun jao-org-notes--insert-title ()
  (let ((title (read-string "Title: ")))
    (when (not (string-empty-p title))
      (let* ((base (replace-regexp-in-string " +" "-" (downcase title)))
             (fname (expand-file-name (concat base ".org") jao-org-notes-dir))
             (exists? (file-exists-p fname)))
        (find-file fname)
        (when (not exists?)
          (insert "#+title: " title "\n")
          t)))))

(defun jao-org-notes--insert-tags ()
  (let ((ts (completing-read-multiple "Tags: "
                                      (org-global-tags-completion-table))))
    (insert "#+filetags:" ":" (mapconcat 'identity ts ":") ":\n")))

(defun jao-org-notes--insert-date ()
  (insert "#+date: ")
  (org-insert-time-stamp (current-time))
  (insert "\n"))

(defun jao-org-notes--template (k)
  `(,k "Note" plain (file jao-org-notes-open) "* %a "))

;;;###autoload
(defun jao-org-notes-open ()
  (interactive)
  (when (jao-org-notes--insert-title)
    (jao-org-notes--insert-date)
    (jao-org-notes--insert-tags)
    (insert "#+link: "))
  (save-buffer)
  (buffer-file-name))

;;;###autoload
(defun jao-org-notes-setup (mnemonic)
  (setq org-capture-templates
        (add-to-list 'org-capture-templates (jao-org-notes--template mnemonic)))
  (add-to-list 'org-agenda-files jao-org-notes-dir)
  (when (fboundp 'org-capture-upgrade-templates)
    (org-capture-upgrade-templates org-capture-templates)))

;;;###autoload
(defun jao-org-notes-backlinks ()
  (interactive)
  (consult-ripgrep jao-org-notes-dir (regexp-quote (buffer-name))))

(provide 'jao-org-notes)
;;; jao-org-notes.el ends here