Variable: org-goto-auto-isearch

org-goto-auto-isearch is a customizable variable defined in org-goto.el.gz.

Value

t

Documentation

Non-nil means typing characters in org-goto starts incremental search.

When nil, you can use these keybindings to navigate the buffer:

  q Quit the Org Goto interface
  n Go to the next visible heading
  p Go to the previous visible heading
  f Go one heading forward on same level
  b Go one heading backward on same level
  u Go one heading up

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-goto.el.gz
(defcustom org-goto-auto-isearch t
  "Non-nil means typing characters in `org-goto' starts incremental search.
When nil, you can use these keybindings to navigate the buffer:

  q    Quit the Org Goto interface
  n    Go to the next visible heading
  p    Go to the previous visible heading
  f    Go one heading forward on same level
  b    Go one heading backward on same level
  u    Go one heading up"
  :group 'org-goto
  :type 'boolean)