Function: pcmpl-ssh-hosts

pcmpl-ssh-hosts is a byte-compiled function defined in pcmpl-unix.el.gz.

Signature

(pcmpl-ssh-hosts)

Documentation

Return a list of known SSH hosts.

Uses both pcmpl-ssh-config-file and pcmpl-ssh-known-hosts-file.

Source Code

;; Defined in /usr/src/emacs/lisp/pcmpl-unix.el.gz
(defun pcmpl-ssh-hosts ()
  "Return a list of known SSH hosts.
Uses both `pcmpl-ssh-config-file' and `pcmpl-ssh-known-hosts-file'."
  (let ((hosts (pcmpl-ssh-known-hosts)))
    (dolist (h (pcmpl-ssh-config-hosts))
      (push h hosts))
    hosts))