1 ;;; pcmpl-unix.el --- standard UNIX completions
3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; This file is part of GNU Emacs.
8 ;; GNU Emacs is free software; you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation; either version 3, or (at your option)
13 ;; GNU Emacs is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;; GNU General Public License for more details.
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with GNU Emacs; see the file COPYING. If not, write to the
20 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 ;; Boston, MA 02110-1301, USA.
31 (defcustom pcmpl-unix-group-file
"/etc/group"
32 "If non-nil, a string naming the group file on your system."
33 :type
'(choice file
(const nil
))
36 (defcustom pcmpl-unix-passwd-file
"/etc/passwd"
37 "If non-nil, a string naming the passwd file on your system."
38 :type
'(choice file
(const nil
))
41 (defcustom pcmpl-ssh-known-hosts-file
"~/.ssh/known_hosts"
42 "If non-nil, a string naming your SSH \"known_hosts\" file.
43 This allows completion of SSH host names. Note that newer
44 versions of ssh hash the hosts by default to prevent
45 Island-hopping SSH attacks. This can be disabled, at some risk,
46 with the SSH option \"HashKnownHosts no\"."
47 :type
'(choice file
(const nil
))
54 (defun pcomplete/cd
()
55 "Completion for `cd'."
56 (pcomplete-here (pcomplete-dirs)))
59 (defalias 'pcomplete
/pushd
'pcomplete
/cd
)
62 (defun pcomplete/rmdir
()
63 "Completion for `rmdir'."
64 (while (pcomplete-here (pcomplete-dirs))))
67 (defun pcomplete/rm
()
68 "Completion for `rm'."
69 (let ((pcomplete-help "(fileutils)rm invocation"))
70 (pcomplete-opt "dfirRv")
71 (while (pcomplete-here (pcomplete-all-entries) nil
75 (defun pcomplete/xargs
()
76 "Completion for `xargs'."
77 (pcomplete-here (funcall pcomplete-command-completion-function
))
78 (funcall (or (pcomplete-find-completion-function (pcomplete-arg 1))
79 pcomplete-default-completion-function
)))
82 (defalias 'pcomplete
/time
'pcomplete
/xargs
)
85 (defun pcomplete/which
()
86 "Completion for `which'."
87 (while (pcomplete-here (funcall pcomplete-command-completion-function
))))
89 (defun pcmpl-unix-read-passwd-file (file)
90 "Return an alist correlating gids to group names in FILE."
92 (when (file-readable-p file
)
94 (insert-file-contents file
)
95 (goto-char (point-min))
98 (split-string (buffer-substring
99 (point) (progn (end-of-line)
101 (setq names
(cons (nth 0 fields
) names
)))
103 (pcomplete-uniqify-list names
)))
105 (defsubst pcmpl-unix-group-names
()
106 "Read the contents of /etc/group for group names."
107 (if pcmpl-unix-group-file
108 (pcmpl-unix-read-passwd-file pcmpl-unix-group-file
)))
110 (defsubst pcmpl-unix-user-names
()
111 "Read the contents of /etc/passwd for user names."
112 (if pcmpl-unix-passwd-file
113 (pcmpl-unix-read-passwd-file pcmpl-unix-passwd-file
)))
116 (defun pcomplete/chown
()
117 "Completion for the `chown' command."
118 (unless (pcomplete-match "\\`-")
119 (if (pcomplete-match "\\`[^.]*\\'" 0)
120 (pcomplete-here* (pcmpl-unix-user-names))
121 (if (pcomplete-match "\\.\\([^.]*\\)\\'" 0)
122 (pcomplete-here* (pcmpl-unix-group-names)
123 (pcomplete-match-string 1 0))
125 (while (pcomplete-here (pcomplete-entries))))
128 (defun pcomplete/chgrp
()
129 "Completion for the `chgrp' command."
130 (unless (pcomplete-match "\\`-")
131 (pcomplete-here* (pcmpl-unix-group-names)))
132 (while (pcomplete-here (pcomplete-entries))))
135 ;; ssh support by Phil Hagelberg.
136 ;; http://www.emacswiki.org/cgi-bin/wiki/pcmpl-ssh.el
138 (defun pcmpl-ssh-hosts ()
139 "Return a list of hosts found in `pcmpl-ssh-known-hosts-file'."
140 (when (and pcmpl-ssh-known-hosts-file
141 (file-readable-p pcmpl-ssh-known-hosts-file
))
143 (insert-file-contents-literally pcmpl-ssh-known-hosts-file
)
144 (let (ssh-hosts-list)
145 (while (re-search-forward "^ *\\([-.[:alnum:]]+\\)[, ]" nil t
)
146 (add-to-list 'ssh-hosts-list
(match-string 1))
147 (while (and (looking-back ",")
148 (re-search-forward "\\([-.[:alnum:]]+\\)[, ]"
149 (line-end-position) t
))
150 (add-to-list 'ssh-hosts-list
(match-string 1))))
154 (defun pcomplete/ssh
()
155 "Completion rules for the `ssh' command."
156 (pcomplete-opt "1246AaCfgKkMNnqsTtVvXxYbcDeFiLlmOopRSw" nil t
)
157 (pcomplete-here (pcmpl-ssh-hosts)))
160 (defun pcomplete/scp
()
161 "Completion rules for the `scp' command.
162 Includes files as well as host names followed by a colon."
163 (pcomplete-opt "1246BCpqrvcFiloPS")
164 (while t
(pcomplete-here (append (pcomplete-all-entries)
165 (mapcar (lambda (host)
167 (pcmpl-ssh-hosts))))))
169 (provide 'pcmpl-unix
)
171 ;; arch-tag: 3f9eb5af-7e0e-449d-b586-381cbbf8fc5c
172 ;;; pcmpl-unix.el ends here