aboutsummaryrefslogtreecommitdiff
path: root/.emacs.d
diff options
context:
space:
mode:
authorGuangxiong Lin <[email protected]>2022-03-13 18:14:31 +0800
committerGuangxiong Lin <[email protected]>2022-03-13 18:14:31 +0800
commite7076e0ec43f2e4d9cce4aeffd6d905b8e021047 (patch)
treeaa2691ea32cd7943e1adfe74f143d6554c8effef /.emacs.d
parentafa5721f86c7d3fdf7ce24c4a8921ac68c172350 (diff)
downloaddotfiles-e7076e0ec43f2e4d9cce4aeffd6d905b8e021047.tar.gz
dotfiles-e7076e0ec43f2e4d9cce4aeffd6d905b8e021047.tar.bz2
dotfiles-e7076e0ec43f2e4d9cce4aeffd6d905b8e021047.zip
Rewrite stuck project to make it more clear (emacs)
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/lisp/init-org.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/.emacs.d/lisp/init-org.el b/.emacs.d/lisp/init-org.el
index 7126ad8..c8c4fe0 100644
--- a/.emacs.d/lisp/init-org.el
+++ b/.emacs.d/lisp/init-org.el
@@ -14,8 +14,10 @@
'(org-ql-block '(and (or (tags "PROJECT")
(not (ancestors (todo))))
(todo)
- (not (or (done) (todo "SOMEDAY")
- (todo "NEXT") (scheduled)))
+ (not (done))
+ (not (todo "SOMEDAY"))
+ (not (todo "NEXT"))
+ (not (scheduled))
(not (descendants (todo "NEXT")))
(not (descendants (scheduled))))
((org-ql-block-header "Stuck Projects")))