Variable: pcmpl-ssh-config-file

pcmpl-ssh-config-file is a customizable variable defined in pcmpl-unix.el.gz.

Value

"~/.ssh/config"

Documentation

If non-nil, a string naming your SSH "config" file.

This allows one method of completion of SSH host names, the other being via pcmpl-ssh-known-hosts-file.

This variable was added, or its default value changed, in Emacs 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/pcmpl-unix.el.gz
(defcustom pcmpl-ssh-config-file "~/.ssh/config"
  "If non-nil, a string naming your SSH \"config\" file.
This allows one method of completion of SSH host names, the other
being via `pcmpl-ssh-known-hosts-file'."
  :type '(choice file (const nil))
  :group 'pcmpl-unix
  :version "24.1")