Function: edt-find

edt-find is an interactive and byte-compiled function defined in edt.el.gz.

Signature

(edt-find)

Documentation

Find first occurrence of string in current direction and save it.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
(defun edt-find ()
  "Find first occurrence of string in current direction and save it."
  (interactive)
  (setq edt-find-last-text (read-string "Search: "))
  (if (equal edt-direction-string edt-forward-string)
      (edt-find-forward t)
      (edt-find-backward t)))