Function: actypes::link-to-string-match

actypes::link-to-string-match is an interactive and byte-compiled function defined in hactypes.el.

Signature

(actypes::link-to-string-match STRING N SOURCE &optional BUFFER-P)

Documentation

Find STRING's Nth occurrence in SOURCE and display location at window top.

SOURCE is a pathname unless optional BUFFER-P is non-nil, then SOURCE must be a buffer name or buffer. Return t if found, nil if not.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hactypes.el
(defact link-to-string-match (string n source &optional buffer-p)
  "Find STRING's Nth occurrence in SOURCE and display location at window top.
SOURCE is a pathname unless optional BUFFER-P is non-nil, then SOURCE must be
a buffer name or buffer.
Return t if found, nil if not."
  (interactive "sString to match: \nnOccurrence number: \nfFile to search: ")
  (funcall (actype:action 'link-to-regexp-match)
	   (regexp-quote string) n source buffer-p))