From 22a8ee50e8aa4784a981b09835da7e82e529822c Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Thu, 13 Mar 2025 20:29:50 +0200 Subject: [PATCH] Support more embedded ranges in treesit-up-list and treesit-outline-level * lisp/treesit.el (treesit-up-list, treesit-outline-level): Add a loop to handle all nested parsers. (cherry picked from commit d1ce9fbf49bfacd00f1d1f152b457367c88d28df) --- lisp/treesit.el | 36 +++++++++++++++++++----------------- 1 file changed, 19 insertions(+), 17 deletions(-) diff --git a/lisp/treesit.el b/lisp/treesit.el index 2cb2ae5c545..c5a174e94ae 100644 --- a/lisp/treesit.el +++ b/lisp/treesit.el @@ -3124,13 +3124,14 @@ ARG is described in the docstring of `up-list'." (treesit-node-start parent)))) (setq parent (treesit-parent-until parent pred))) - (when-let* ((_ (null parent)) - (parser (treesit-node-parser (treesit-node-at (point)))) - (_ (not (eq parser treesit-primary-parser))) - (guest-root-node (treesit-parser-root-node parser))) - ;; Continue from the host node that contains the guest parser. - (setq parent (treesit-thing-at - (- (treesit-node-start guest-root-node) 2) pred))) + (unless parent + (let ((parsers (seq-keep (lambda (o) + (overlay-get o 'treesit-host-parser)) + (overlays-at (point) t)))) + (while (and (not parent) parsers) + (setq parent (treesit-parent-until + (treesit-node-at (point) (car parsers)) pred) + parsers (cdr parsers))))) (or (when (and default-pos (or (null parent) @@ -4010,16 +4011,17 @@ For BOUND, MOVE, BACKWARD, LOOKING-AT, see the descriptions in treesit-outline-predicate))) (while (setq node (treesit-parent-until node pred)) (setq level (1+ level))) - ;; Continue counting from the host node. - (when-let* ((parser - (when treesit-aggregated-outline-predicate - (seq-some (lambda (o) (overlay-get o 'treesit-host-parser)) - (overlays-at (point))))) - (node (treesit-node-at (point) parser)) - (lang (treesit-parser-language parser)) - (pred (alist-get lang treesit-aggregated-outline-predicate))) - (while (setq node (treesit-parent-until node pred)) - (setq level (1+ level)))) + + ;; Continue counting the host nodes. + (dolist (parser (seq-keep (lambda (o) + (overlay-get o 'treesit-host-parser)) + (overlays-at (point) t))) + (let* ((node (treesit-node-at (point) parser)) + (lang (treesit-parser-language parser)) + (pred (alist-get lang treesit-aggregated-outline-predicate))) + (while (setq node (treesit-parent-until node pred)) + (setq level (1+ level))))) + level)) ;;; Hideshow mode -- 2.39.5