Variable: org-goto-interface

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

Value

outline

Documentation

The default interface to be used for org-goto.

Allowed values are:

outline

   The interface shows an outline of the relevant file and the
   correct heading is found by moving through the outline or by
   searching with incremental search.

outline-path-completion

  Headlines in the current buffer are offered via completion.
  This is the interface also used by the refile command.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-goto.el.gz
(defcustom org-goto-interface 'outline
  "The default interface to be used for `org-goto'.

Allowed values are:

`outline'

   The interface shows an outline of the relevant file and the
   correct heading is found by moving through the outline or by
   searching with incremental search.

`outline-path-completion'

  Headlines in the current buffer are offered via completion.
  This is the interface also used by the refile command."
  :group 'org-goto
  :type '(choice
	  (const :tag "Outline" outline)
	  (const :tag "Outline-path-completion" outline-path-completion)))