summaryrefslogtreecommitdiff
path: root/emacs-init.org
diff options
context:
space:
mode:
authorfpi2020-07-07 19:42:06 +0200
committerfpi2020-07-07 19:44:25 +0200
commitdc53548cf32dbd963f68e48064593d900df1c64c (patch)
tree0fcff7cc050c8293d0486860d8f0fdf8ba7425d8 /emacs-init.org
parentAdd next weeks agenda view (diff)
Enable resetting checkboxes for repeating task
Diffstat (limited to 'emacs-init.org')
-rw-r--r--emacs-init.org15
1 files changed, 15 insertions, 0 deletions
diff --git a/emacs-init.org b/emacs-init.org
index 67d6abe..cd0b1de 100644
--- a/emacs-init.org
+++ b/emacs-init.org
@@ -2711,6 +2711,21 @@ Use imagemagick and standalone class for latex preview.
(use-package org-num
:delight)
#+end_src
+*** org-checklist
+#+begin_quote
+This file provides some functions for handing repeated tasks which involve
+checking off a list of items. By setting the RESET_CHECK_BOXES property in an
+item, when the TODO state is set to done all checkboxes under that item are
+cleared. If the LIST_EXPORT_BASENAME property is set, a file will be created
+using the value of that property plus a timestamp, containing all the items
+in the list which are not checked. Additionally the user will be prompted to
+print the list.
+#+end_quote
+#+begin_src emacs-lisp
+(use-package org-checklist
+ :after org
+ :straight (org-plus-contrib))
+#+end_src
*** Inline images
Resize inline images to 400px but respect width specifications in attribute lines.