Variable: ede-locate-setup-options

ede-locate-setup-options is a customizable variable defined in locate.el.gz.

Value

(ede-locate-base)

Documentation

List of locate objects to try out by default.

Listed in order of preference. If the first item cannot be used in a particular project, then the next one is tried. It is always assumed that ede-locate-base(var)/ede-locate-base(fun) is at end of the list.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/locate.el.gz
;;; Code:
(defcustom ede-locate-setup-options
  '(ede-locate-base)
  "List of locate objects to try out by default.
Listed in order of preference.  If the first item cannot be used in
a particular project, then the next one is tried.
It is always assumed that `ede-locate-base' is at end of the list."
  :group 'ede
  :type '(repeat
	  (choice (const :tag "None" ede-locate-base)
		  (const :tag "locate" ede-locate-locate)
		  (const :tag "GNU Global" ede-locate-global)
		  (const :tag "ID Utils" ede-locate-idutils)
		  (const :tag "CScope" ede-locate-cscope)))
  )