summaryrefslogtreecommitdiff
path: root/org-fc.el
diff options
context:
space:
mode:
authorLeon Rische <leon.rische@me.com>2020-09-22 12:20:23 +0200
committerLeon Rische <leon.rische@me.com>2020-09-22 12:20:23 +0200
commit894b2f517f41c3f326d2dc31a59f1bd6ad9d53da (patch)
tree14cefb648e4ea8d53ac301a8ed07615aed51cb3f /org-fc.el
parent15589590a503d40b50cdaa0c4b6833414a2fd078 (diff)
Rework narrowing mechanism
Diffstat (limited to 'org-fc.el')
-rw-r--r--org-fc.el40
1 files changed, 16 insertions, 24 deletions
diff --git a/org-fc.el b/org-fc.el
index 1e02fa2..b9d8b24 100644
--- a/org-fc.el
+++ b/org-fc.el
@@ -1051,33 +1051,25 @@ If TEXT is non-nil, the content is replaced with TEXT."
;;;; Outline Trees
-(defun org-fc-narrow-tree ()
+(defcustom org-fc-narrow-visibility 'ancestors
+ "Visibility of the current heading during review.
+See `org-show-set-visibility' for possible values"
+ :group 'org-fc)
+
+(defun org-fc-narrow ()
"Narrow the outline tree.
Only parent headings of the current heading remain visible."
(interactive)
- (org-fc-with-point-at-entry
- (let* ((end (org-fc-point-at-end-of-previous))
- (tags (org-get-tags nil 'local))
- (notitle (member "notitle" tags))
- (noheading (member "noheading" tags))
- (el (org-element-at-point))
- (current-end (org-element-property :contents-end el)))
- (if noheading
- (org-fc-hide-heading))
- (while (org-up-heading-safe)
- (let ((start (point-at-eol))
- (end_ (org-fc-point-at-end-of-previous)))
- (if (< start end)
- (org-fc-hide-region end start))
- (setq end end_)))
- (let ((at (org-fc-point-after-title))
- (eop (org-fc-point-at-end-of-previous)))
- ;; Don't hide anything if the heading is at the beginning of the buffer
- (if eop
- (if (and at (not notitle))
- (org-fc-hide-region at eop)
- (org-fc-hide-region (point-min) eop))))
- (org-fc-hide-region current-end (point-max)))))
+ (let* ((tags (org-get-tags nil 'local)))
+ ;; Find the first heading with a :narrow: tag or the top level
+ ;; ancestor of the current heading and narrow to its region
+ (save-excursion
+ (while (org-up-heading-safe))
+ (org-narrow-to-subtree)
+ (outline-hide-subtree))
+ ;; Show only the ancestors of the current card
+ (org-show-set-visibility org-fc-narrow-visibility)
+ (if (member "noheading" tags) (org-fc-hide-heading))))
;;; Updating Cards