Mercurial > emacs
annotate lisp/pcmpl-unix.el @ 109489:b4b02bfd4d95
SQL Mode Version2.4 - Improved login prompting
* progmodes/sql.el: Version 2.4. Improved Login prompting.
(sql-login-params): New widget definition.
(sql-oracle-login-params, sql-mysql-login-params)
(sql-solid-login-params, sql-sybase-login-params)
(sql-informix-login-params, sql-ingres-login-params)
(sql-ms-login-params, sql-postgres-login-params)
(sql-interbase-login-params, sql-db2-login-params)
(sql-linter-login-params): Use it.
(sql-sqlite-login-params): Use it; Define "database" parameter as
a file name.
(sql-sqlite-program): Change to "sqlite3"
(sql-comint-sqlite): Make sure database name is complete.
(sql-for-each-login): New function.
(sql-connect, sql-save-connection): Use it.
(sql-get-login-ext): New function.
(sql-get-login): Use it.
(sql-make-alternate-buffer-name): Handle :file parameters.
author | Michael Mauger <mmaug@yahoo.com> |
---|---|
date | Thu, 22 Jul 2010 20:59:43 -0400 |
parents | 54435fbb4206 |
children | 280c8ae2476d 376148b31b5e |
rev | line source |
---|---|
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
29959
diff
changeset
|
1 ;;; pcmpl-unix.el --- standard UNIX completions |
29959 | 2 |
74442 | 3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, |
106815 | 4 ;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
29959 | 5 |
6 ;; This file is part of GNU Emacs. | |
7 | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91644
diff
changeset
|
8 ;; GNU Emacs is free software: you can redistribute it and/or modify |
29959 | 9 ;; it under the terms of the GNU General Public License as published by |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91644
diff
changeset
|
10 ;; the Free Software Foundation, either version 3 of the License, or |
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91644
diff
changeset
|
11 ;; (at your option) any later version. |
29959 | 12 |
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. | |
17 | |
18 ;; You should have received a copy of the GNU General Public License | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91644
diff
changeset
|
19 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
29959 | 20 |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
29959
diff
changeset
|
21 ;;; Commentary: |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
29959
diff
changeset
|
22 |
29959 | 23 ;;; Code: |
24 | |
25 (require 'pcomplete) | |
26 | |
27 ;; User Variables: | |
28 | |
29 (defcustom pcmpl-unix-group-file "/etc/group" | |
91644
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
30 "If non-nil, a string naming the group file on your system." |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
31 :type '(choice file (const nil)) |
29959 | 32 :group 'pcmpl-unix) |
33 | |
34 (defcustom pcmpl-unix-passwd-file "/etc/passwd" | |
91644
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
35 "If non-nil, a string naming the passwd file on your system." |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
36 :type '(choice file (const nil)) |
29959 | 37 :group 'pcmpl-unix) |
38 | |
91643
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
39 (defcustom pcmpl-ssh-known-hosts-file "~/.ssh/known_hosts" |
91644
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
40 "If non-nil, a string naming your SSH \"known_hosts\" file. |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
41 This allows completion of SSH host names. Note that newer |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
42 versions of ssh hash the hosts by default to prevent |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
43 Island-hopping SSH attacks. This can be disabled, at some risk, |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
44 with the SSH option \"HashKnownHosts no\"." |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
45 :type '(choice file (const nil)) |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
46 :group 'pcmpl-unix |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
47 :version "23.1") |
91643
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
48 |
29959 | 49 ;; Functions: |
50 | |
51 ;;;###autoload | |
52 (defun pcomplete/cd () | |
53 "Completion for `cd'." | |
106360
33815099ecfc
(pcomplete/cd): Complete more than one argument, just in case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
54 (while (pcomplete-here (pcomplete-dirs)))) |
29959 | 55 |
56 ;;;###autoload | |
57 (defalias 'pcomplete/pushd 'pcomplete/cd) | |
58 | |
59 ;;;###autoload | |
60 (defun pcomplete/rmdir () | |
61 "Completion for `rmdir'." | |
62 (while (pcomplete-here (pcomplete-dirs)))) | |
63 | |
64 ;;;###autoload | |
65 (defun pcomplete/rm () | |
66 "Completion for `rm'." | |
67 (let ((pcomplete-help "(fileutils)rm invocation")) | |
68 (pcomplete-opt "dfirRv") | |
69 (while (pcomplete-here (pcomplete-all-entries) nil | |
70 'expand-file-name)))) | |
71 | |
72 ;;;###autoload | |
73 (defun pcomplete/xargs () | |
74 "Completion for `xargs'." | |
75 (pcomplete-here (funcall pcomplete-command-completion-function)) | |
76 (funcall (or (pcomplete-find-completion-function (pcomplete-arg 1)) | |
77 pcomplete-default-completion-function))) | |
78 | |
79 ;;;###autoload | |
80 (defalias 'pcomplete/time 'pcomplete/xargs) | |
81 | |
82 ;;;###autoload | |
83 (defun pcomplete/which () | |
84 "Completion for `which'." | |
85 (while (pcomplete-here (funcall pcomplete-command-completion-function)))) | |
86 | |
87 (defun pcmpl-unix-read-passwd-file (file) | |
106869
54435fbb4206
* pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
88 "Return an alist correlating gids to group names in FILE. |
54435fbb4206
* pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
89 |
54435fbb4206
* pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
90 If FILE is in hashed format (as described in the OpenSSH |
54435fbb4206
* pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
91 documentation), this function returns nil." |
29959 | 92 (let (names) |
93 (when (file-readable-p file) | |
94 (with-temp-buffer | |
95 (insert-file-contents file) | |
96 (goto-char (point-min)) | |
97 (while (not (eobp)) | |
98 (let* ((fields | |
99 (split-string (buffer-substring | |
100 (point) (progn (end-of-line) | |
101 (point))) ":"))) | |
102 (setq names (cons (nth 0 fields) names))) | |
103 (forward-line)))) | |
104 (pcomplete-uniqify-list names))) | |
105 | |
106 (defsubst pcmpl-unix-group-names () | |
107 "Read the contents of /etc/group for group names." | |
108 (if pcmpl-unix-group-file | |
109 (pcmpl-unix-read-passwd-file pcmpl-unix-group-file))) | |
110 | |
111 (defsubst pcmpl-unix-user-names () | |
112 "Read the contents of /etc/passwd for user names." | |
113 (if pcmpl-unix-passwd-file | |
114 (pcmpl-unix-read-passwd-file pcmpl-unix-passwd-file))) | |
115 | |
116 ;;;###autoload | |
117 (defun pcomplete/chown () | |
118 "Completion for the `chown' command." | |
119 (unless (pcomplete-match "\\`-") | |
120 (if (pcomplete-match "\\`[^.]*\\'" 0) | |
121 (pcomplete-here* (pcmpl-unix-user-names)) | |
122 (if (pcomplete-match "\\.\\([^.]*\\)\\'" 0) | |
123 (pcomplete-here* (pcmpl-unix-group-names) | |
124 (pcomplete-match-string 1 0)) | |
125 (pcomplete-here*)))) | |
126 (while (pcomplete-here (pcomplete-entries)))) | |
127 | |
128 ;;;###autoload | |
129 (defun pcomplete/chgrp () | |
130 "Completion for the `chgrp' command." | |
131 (unless (pcomplete-match "\\`-") | |
132 (pcomplete-here* (pcmpl-unix-group-names))) | |
133 (while (pcomplete-here (pcomplete-entries)))) | |
134 | |
91644
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
135 |
91643
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
136 ;; ssh support by Phil Hagelberg. |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
137 ;; http://www.emacswiki.org/cgi-bin/wiki/pcmpl-ssh.el |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
138 |
91644
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
139 (defun pcmpl-ssh-hosts () |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
140 "Return a list of hosts found in `pcmpl-ssh-known-hosts-file'." |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
141 (when (and pcmpl-ssh-known-hosts-file |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
142 (file-readable-p pcmpl-ssh-known-hosts-file)) |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
143 (with-temp-buffer |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
144 (insert-file-contents-literally pcmpl-ssh-known-hosts-file) |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
145 (let (ssh-hosts-list) |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
146 (while (re-search-forward "^ *\\([-.[:alnum:]]+\\)[, ]" nil t) |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
147 (add-to-list 'ssh-hosts-list (match-string 1)) |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
148 (while (and (looking-back ",") |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
149 (re-search-forward "\\([-.[:alnum:]]+\\)[, ]" |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
150 (line-end-position) t)) |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
151 (add-to-list 'ssh-hosts-list (match-string 1)))) |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
152 ssh-hosts-list)))) |
91643
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
153 |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
154 ;;;###autoload |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
155 (defun pcomplete/ssh () |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
156 "Completion rules for the `ssh' command." |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
157 (pcomplete-opt "1246AaCfgKkMNnqsTtVvXxYbcDeFiLlmOopRSw" nil t) |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
158 (pcomplete-here (pcmpl-ssh-hosts))) |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
159 |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
160 ;;;###autoload |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
161 (defun pcomplete/scp () |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
162 "Completion rules for the `scp' command. |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
163 Includes files as well as host names followed by a colon." |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
164 (pcomplete-opt "1246BCpqrvcFiloPS") |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
165 (while t (pcomplete-here (append (pcomplete-all-entries) |
91644
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
166 (mapcar (lambda (host) |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
167 (concat host ":")) |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
168 (pcmpl-ssh-hosts)))))) |
91643
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
169 |
91644
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
170 (provide 'pcmpl-unix) |
91643
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
171 |
91644
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
172 ;; arch-tag: 3f9eb5af-7e0e-449d-b586-381cbbf8fc5c |
29959 | 173 ;;; pcmpl-unix.el ends here |