Variable: ido-unc-hosts
ido-unc-hosts is a customizable variable defined in ido.el.gz.
Value
nil
Documentation
List of known UNC host names to complete after initial //.
If value is a function, that function is called to search network for hosts on first use of UNC path.
Source Code
;; Defined in /usr/src/emacs/lisp/ido.el.gz
(defcustom ido-unc-hosts nil
"List of known UNC host names to complete after initial //.
If value is a function, that function is called to search network for
hosts on first use of UNC path."
:type '(choice (repeat :tag "List of UNC host names" string)
(function-item :tag "Use `NET VIEW'"
:value ido-unc-hosts-net-view)
(function :tag "Your own function"))
:set (lambda (symbol value)
(set symbol value)
(setq ido-unc-hosts-cache t)))