cleaned up proj task skip function
This commit is contained in:
parent
103611d026
commit
5b0557d8fc
7
conf.el
7
conf.el
|
@ -861,12 +861,7 @@ tags that do not have tags in neg-tags-list"
|
|||
(if (member keyword nd/project-skip-todostates)
|
||||
(nd/skip-subtree)
|
||||
(nd/skip-heading))
|
||||
(if (not (and (nd/heading-has-parent 'nd/is-todoitem-p)
|
||||
(not (nd/is-timestamped-heading-p))
|
||||
(not (nd/is-scheduled-heading-p))
|
||||
(not (nd/is-deadlined-heading-p))
|
||||
;; (equal keyword skip-keyword)
|
||||
))
|
||||
(if (not (nd/heading-has-parent 'nd/is-todoitem-p))
|
||||
(nd/skip-heading)))
|
||||
(nd/skip-heading)))))
|
||||
|
||||
|
|
8
conf.org
8
conf.org
|
@ -1146,15 +1146,9 @@ which is dealt with similarly)
|
|||
(if (member keyword nd/project-skip-todostates)
|
||||
(nd/skip-subtree)
|
||||
(nd/skip-heading))
|
||||
(if (not (and (nd/heading-has-parent 'nd/is-todoitem-p)
|
||||
(not (nd/is-timestamped-heading-p))
|
||||
(not (nd/is-scheduled-heading-p))
|
||||
(not (nd/is-deadlined-heading-p))
|
||||
;; (equal keyword skip-keyword)
|
||||
))
|
||||
(if (not (nd/heading-has-parent 'nd/is-todoitem-p))
|
||||
(nd/skip-heading)))
|
||||
(nd/skip-heading)))))
|
||||
|
||||
#+END_SRC
|
||||
**** header-level errors
|
||||
Some headers are invalid under certain conditions
|
||||
|
|
Loading…
Reference in New Issue