org-cycle-level: Do nothing at inlinetasks
* lisp/org.el (org-cycle-level): Do not change task level at inlinetasks. Reported-by: Alain.Cochard@unistra.fr Link: https://orgmode.org/list/25524.11082.597138.21839@gargle.gargle.HOWL
This commit is contained in:
parent
80d1bc63ff
commit
a3815a169a
|
@ -6690,7 +6690,9 @@ This goes first to child, then to parent, level, then up the hierarchy.
|
|||
After top level, it switches back to sibling level."
|
||||
(interactive)
|
||||
(let ((org-adapt-indentation nil))
|
||||
(when (org-point-at-end-of-empty-headline)
|
||||
(when (and (org-point-at-end-of-empty-headline)
|
||||
(not (and (featurep 'org-inlinetask)
|
||||
(org-inlinetask-in-task-p))))
|
||||
(setq this-command 'org-cycle-level) ; Only needed for caching
|
||||
(let ((cur-level (org-current-level))
|
||||
(prev-level (org-get-previous-line-level)))
|
||||
|
|
Loading…
Reference in New Issue