diff options
author | Case Duckworth | 2021-10-06 17:29:46 -0500 |
---|---|---|
committer | Case Duckworth | 2021-10-06 17:29:46 -0500 |
commit | 95e14142707a2122d6efa1dff70805a7e4c962fb (patch) | |
tree | b4b1544f29f8eaf00268b9643f8583a02c7a9f08 | |
parent | Add org-closed-time-regexp to skips when counting words (diff) | |
download | emacs-95e14142707a2122d6efa1dff70805a7e4c962fb.tar.gz emacs-95e14142707a2122d6efa1dff70805a7e4c962fb.zip |
Stub a little further with chd/click-bits
-rw-r--r-- | lisp/chd.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/chd.el b/lisp/chd.el index f7b5dbb..b301c8d 100644 --- a/lisp/chd.el +++ b/lisp/chd.el | |||
@@ -42,7 +42,11 @@ | |||
42 | 42 | ||
43 | (defun chd/click-bits (date) | 43 | (defun chd/click-bits (date) |
44 | "Create a new Click Bits org file, or edit the one for DATE." | 44 | "Create a new Click Bits org file, or edit the one for DATE." |
45 | (error "not implemented")) | 45 | (interactive (list (progn |
46 | (require 'org) | ||
47 | (org-read-date)))) | ||
48 | ;; TODO: implement actual logic. | ||
49 | (message "%s" date)) | ||
46 | 50 | ||
47 | ;;; NOTES | 51 | ;;; NOTES |
48 | ;; org-protocol: https://orgmode.org/worg/org-contrib/org-protocol.html | 52 | ;; org-protocol: https://orgmode.org/worg/org-contrib/org-protocol.html |