Variable: pcmpl-ssh-known-hosts-file
pcmpl-ssh-known-hosts-file is a customizable variable defined in
pcmpl-unix.el.gz.
Value
"~/.ssh/known_hosts"
Documentation
If non-nil, a string naming your SSH "known_hosts" file.
This allows one method of completion of SSH host names, the other
being via pcmpl-ssh-config-file. Note that newer versions of
ssh hash the hosts by default, to prevent Island-hopping SSH
attacks. This can be disabled, at some risk, with the SSH option
"HashKnownHosts no".
This variable was added, or its default value changed, in Emacs 23.1.
Source Code
;; Defined in /usr/src/emacs/lisp/pcmpl-unix.el.gz
(defcustom pcmpl-ssh-known-hosts-file "~/.ssh/known_hosts"
"If non-nil, a string naming your SSH \"known_hosts\" file.
This allows one method of completion of SSH host names, the other
being via `pcmpl-ssh-config-file'. Note that newer versions of
ssh hash the hosts by default, to prevent Island-hopping SSH
attacks. This can be disabled, at some risk, with the SSH option
\"HashKnownHosts no\"."
:type '(choice file (const nil))
:group 'pcmpl-unix
:version "23.1")