-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
org-gtd-habit.el
103 lines (78 loc) · 3.13 KB
/
org-gtd-habit.el
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
;;; org-gtd-habit.el --- Define habits in org-gtd -*- lexical-binding: t; coding: utf-8 -*-
;;
;; Copyright © 2019-2023 Aldric Giacomoni
;; Author: Aldric Giacomoni <[email protected]>
;; This file is not part of GNU Emacs.
;; This file 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, or (at your option)
;; any later version.
;; This file 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 file. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;;
;; Habits have org-mode requirements, we satisfy them here.
;;
;;; Code:
;;;; Requirements
(require 'org-gtd-core)
(require 'org-gtd-clarify)
(require 'org-gtd-refile)
(declare-function 'org-gtd-organize--call 'org-gtd-organize)
(declare-function 'org-gtd-organize-apply-hooks 'org-gtd-organize)
;;;; Constants
(defconst org-gtd-habit "Habits")
(defconst org-gtd-habit-func #'org-gtd-habit--apply
"Function called when organizing item as a habit.")
(defconst org-gtd-habit-template
(format "* Habits
:PROPERTIES:
:ORG_GTD: %s
:END:
" org-gtd-habit))
;;;; Commands
(defun org-gtd-habit (&optional repeater)
"Organize and refile item at point as a calendar item.
If you want to call this non-interactively,
REPEATER is `org-mode'-style repeater string (.e.g \".+3d\") which will
determine how often you'll be reminded of this habit."
(interactive)
(org-gtd-organize--call
(apply-partially org-gtd-habit-func
repeater)))
;;;; Functions
;;;;; Public
(defun org-gtd-habit-create (topic repeater)
"Automatically create a habit in the GTD flow.
TOPIC is the string you want to see in the `org-agenda' view.
REPEATER is `org-mode'-style repeater string (.e.g \".+3d\") which will
determine how often you'll be reminded of this habit."
(let ((buffer (generate-new-buffer "Org GTD programmatic temp buffer"))
(org-id-overriding-file-name "org-gtd"))
(with-current-buffer buffer
(org-mode)
(insert (format "* %s" topic))
(org-gtd-clarify-item)
(org-gtd-habit repeater))
(kill-buffer buffer)))
;;;;; Private
(defun org-gtd-habit--apply (&optional repeater)
"Add a repeater to this item and store in org gtd.
If you want to call this non-interactively,
REPEATER is `org-mode'-style repeater string (.e.g \".+3d\") which will
determine how often you'll be reminded of this habit."
(let ((repeater (or repeater
(read-from-minibuffer "How do you want this to repeat? ")))
(today (format-time-string "%Y-%m-%d")))
(org-schedule nil (format "<%s %s>" today repeater))
(org-entry-put (point) "STYLE" "habit"))
(setq-local org-gtd--organize-type 'habit)
(org-gtd-organize-apply-hooks)
(org-gtd-refile--do org-gtd-habit org-gtd-habit-template))
;;;; Footer
(provide 'org-gtd-habit)
;;; org-gtd-habit.el ends here