summary refs log tree commit diff stats
path: root/lisp/chd.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/chd.el')
-rw-r--r--lisp/chd.el10
1 files changed, 8 insertions, 2 deletions
diff --git a/lisp/chd.el b/lisp/chd.el index 697c134..b301c8d 100644 --- a/lisp/chd.el +++ b/lisp/chd.el
@@ -40,10 +40,16 @@
40 (org-back-to-heading) 40 (org-back-to-heading)
41 (org-open-at-point))) 41 (org-open-at-point)))
42 42
43(defun chd/click-bits (date)
44 "Create a new Click Bits org file, or edit the one for DATE."
45 (interactive (list (progn
46 (require 'org)
47 (org-read-date))))
48 ;; TODO: implement actual logic.
49 (message "%s" date))
50
43;;; NOTES 51;;; NOTES
44;; org-protocol: https://orgmode.org/worg/org-contrib/org-protocol.html 52;; org-protocol: https://orgmode.org/worg/org-contrib/org-protocol.html
45;; the bit i wanna pull from TaskIQ: 'document.getElementById("preview") 53;; the bit i wanna pull from TaskIQ: 'document.getElementById("preview")
46
47
48(provide 'chd) 54(provide 'chd)
49;;; chd.el ends here 55;;; chd.el ends here