Earl Chase <[email protected]> writes: > Resending because I spelled contiguous incorrectly like 10 times.
Thanks for the quick update! > + ;; Regular text search of headlines in Org mode buffers > + (org-link--search-headlines words)) > + (forward-line 0) > + (setq type 'dedicated)) > + ;; Second attempt of regular text search of headlines in Org mode > buffers > + ;; This time we remove pipes from headlines > + ((and (derived-mode-p 'org-mode) > + (org-link--search-headlines (split-string (org-link-unescape (if > starred (substring s 1) s))) 't)) Could you please elaborate why you need org-link-unescape here? Also, nitpick: 't is not needed and not recommended as per Elisp style. t is self-quoting. -- Ihor Radchenko // yantar92, Org mode maintainer, Learn more about Org mode at <https://orgmode.org/>. Support Org development at <https://liberapay.com/org-mode>, or support my work at <https://liberapay.com/yantar92>
