Function: hyrolo-bbdb-fgrep

hyrolo-bbdb-fgrep is an autoloaded, interactive and byte-compiled function defined in hyrolo.el.

Signature

(hyrolo-bbdb-fgrep &optional ARG)

Documentation

Fgrep over a bbdb database and format the results as rolo entries.

With optional prefix ARG, do a grep regexp match instead of a string match.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
;;; ************************************************************************
;;; Big Brother Database (BBDB) Integration
;;; ************************************************************************

;;;###autoload
(defun hyrolo-bbdb-fgrep (&optional arg)
  "Fgrep over a bbdb database and format the results as rolo entries.
With optional prefix ARG, do a grep regexp match instead of a string match."
  (interactive "P")
  (hyrolo-bbdb-grep (not arg)))