Update copyright notices for 2013.
[bpt/emacs.git] / lisp / erc / erc-pcomplete.el
CommitLineData
597993cf
MB
1;;; erc-pcomplete.el --- Provides programmable completion for ERC
2
ab422c4d 3;; Copyright (C) 2002-2004, 2006-2013 Free Software Foundation, Inc.
597993cf
MB
4
5;; Author: Sacha Chua <sacha@free.net.ph>
df5d5f59 6;; Maintainer: FSF
597993cf
MB
7;; Keywords: comm, convenience
8;; URL: http://www.emacswiki.org/cgi-bin/wiki.pl?ErcCompletion
9
10;; This file is part of GNU Emacs.
11
4ee57b2a 12;; GNU Emacs is free software: you can redistribute it and/or modify
597993cf 13;; it under the terms of the GNU General Public License as published by
4ee57b2a
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
597993cf
MB
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
4ee57b2a 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
597993cf
MB
24
25;;; Commentary:
26
27;; This file replaces erc-complete.el. It provides nick completion
28;; for ERC based on pcomplete. If you do not have pcomplete, you may
29;; try to use erc-complete.el.
30;;
31;; To use, (require 'erc-auto) or (require 'erc-pcomplete), then
32;; (erc-pcomplete-mode 1)
33;;
34;; If you want nickname completions ordered such that the most recent
35;; speakers are listed first, set
36;; `erc-pcomplete-order-nickname-completions' to `t'.
37;;
38;; See CREDITS for other contributors.
39;;
40;;; Code:
41
42(require 'pcomplete)
43(require 'erc)
44(require 'erc-compat)
45(require 'time-date)
46(eval-when-compile (require 'cl))
47
48(defgroup erc-pcomplete nil
49 "Programmable completion for ERC"
50 :group 'erc)
51
38b3645a 52(defcustom erc-pcomplete-nick-postfix ":"
fb7ada5f 53 "When `pcomplete' is used in the first word after the prompt,
597993cf
MB
54add this string to nicks completed."
55 :group 'erc-pcomplete
56 :type 'string)
57
58(defcustom erc-pcomplete-order-nickname-completions t
59 "If t, channel nickname completions will be ordered such that
60the most recent speakers are listed first."
61 :group 'erc-pcomplete
62 :type 'boolean)
63
64;;;###autoload (autoload 'erc-completion-mode "erc-pcomplete" nil t)
65(define-erc-module pcomplete Completion
66 "In ERC Completion mode, the TAB key does completion whenever possible."
67 ((add-hook 'erc-mode-hook 'pcomplete-erc-setup)
d4aa710a 68 (add-hook 'erc-complete-functions 'erc-pcompletions-at-point)
597993cf
MB
69 (erc-buffer-list #'pcomplete-erc-setup))
70 ((remove-hook 'erc-mode-hook 'pcomplete-erc-setup)
d4aa710a
SM
71 (remove-hook 'erc-complete-functions 'erc-pcompletions-at-point)))
72
73(defun erc-pcompletions-at-point ()
74 "ERC completion data from pcomplete.
75for use on `completion-at-point-function'."
76 (when (> (point) (erc-beg-of-input-line))
0ff8e1ba
SM
77 (or (let ((pcomplete-default-completion-function #'ignore))
78 (pcomplete-completions-at-point))
79 (let ((c (pcomplete-completions-at-point)))
80 (if c (nconc c '(:exclusive no)))))))
597993cf
MB
81
82(defun erc-pcomplete ()
83 "Complete the nick before point."
84 (interactive)
85 (when (> (point) (erc-beg-of-input-line))
86 (let ((last-command (if (eq last-command 'erc-complete-word)
87 'pcomplete
88 last-command)))
89 (call-interactively 'pcomplete))
90 t))
91
92;;; Setup function
93
94(defun pcomplete-erc-setup ()
95 "Setup `erc-mode' to use pcomplete."
96 (set (make-local-variable 'pcomplete-ignore-case)
97 t)
98 (set (make-local-variable 'pcomplete-use-paring)
99 nil)
597993cf 100 (set (make-local-variable 'pcomplete-parse-arguments-function)
0ff8e1ba 101 'pcomplete-erc-parse-arguments)
597993cf
MB
102 (set (make-local-variable 'pcomplete-command-completion-function)
103 'pcomplete/erc-mode/complete-command)
104 (set (make-local-variable 'pcomplete-command-name-function)
105 'pcomplete-erc-command-name)
106 (set (make-local-variable 'pcomplete-default-completion-function)
107 (lambda () (pcomplete-here (pcomplete-erc-nicks)))))
108
109;;; Programmable completion logic
110
111(defun pcomplete/erc-mode/complete-command ()
112 (pcomplete-here
113 (append
114 (pcomplete-erc-commands)
0b6bb130 115 (pcomplete-erc-nicks erc-pcomplete-nick-postfix t))))
597993cf
MB
116
117(defvar erc-pcomplete-ctcp-commands
118 '("ACTION" "CLIENTINFO" "ECHO" "FINGER" "PING" "TIME" "USERINFO" "VERSION"))
119
120(defun pcomplete/erc-mode/CTCP ()
121 (pcomplete-here (pcomplete-erc-nicks))
122 (pcomplete-here erc-pcomplete-ctcp-commands))
123
124(defun pcomplete/erc-mode/CLEARTOPIC ()
125 (pcomplete-here (pcomplete-erc-channels)))
126
127(defun pcomplete/erc-mode/DEOP ()
128 (while (pcomplete-here (pcomplete-erc-ops))))
129
130(defun pcomplete/erc-mode/DESCRIBE ()
131 (pcomplete-here (pcomplete-erc-nicks)))
132
133(defun pcomplete/erc-mode/IDLE ()
134 (while (pcomplete-here (pcomplete-erc-nicks))))
135
136(defun pcomplete/erc-mode/KICK ()
137 (pcomplete-here (pcomplete-erc-channels))
138 (pcomplete-here (pcomplete-erc-nicks)))
139
140(defun pcomplete/erc-mode/LOAD ()
141 (pcomplete-here (pcomplete-entries)))
142
143(defun pcomplete/erc-mode/MODE ()
144 (pcomplete-here (pcomplete-erc-channels))
145 (while (pcomplete-here (pcomplete-erc-nicks))))
146
147(defun pcomplete/erc-mode/ME ()
148 (while (pcomplete-here (pcomplete-erc-nicks))))
149
150(defun pcomplete/erc-mode/SAY ()
151 (pcomplete-here (pcomplete-erc-nicks))
152 (pcomplete-here (pcomplete-erc-nicks))
153 (while (pcomplete-here (pcomplete-erc-nicks))))
154
155(defun pcomplete/erc-mode/MSG ()
156 (pcomplete-here (append (pcomplete-erc-all-nicks)
157 (pcomplete-erc-channels)))
158 (while (pcomplete-here (pcomplete-erc-nicks))))
159
160(defun pcomplete/erc-mode/NAMES ()
161 (while (pcomplete-here (pcomplete-erc-channels))))
162
163(defalias 'pcomplete/erc-mode/NOTICE 'pcomplete/erc-mode/MSG)
164
165(defun pcomplete/erc-mode/OP ()
166 (while (pcomplete-here (pcomplete-erc-not-ops))))
167
168(defun pcomplete/erc-mode/PART ()
169 (pcomplete-here (pcomplete-erc-channels)))
170
171(defalias 'pcomplete/erc-mode/LEAVE 'pcomplete/erc-mode/PART)
172
173(defun pcomplete/erc-mode/QUERY ()
174 (pcomplete-here (append (pcomplete-erc-all-nicks)
175 (pcomplete-erc-channels)))
176 (while (pcomplete-here (pcomplete-erc-nicks)))
177 )
178
179(defun pcomplete/erc-mode/SOUND ()
180 (while (pcomplete-here (pcomplete-entries))))
181
182(defun pcomplete/erc-mode/TOPIC ()
183 (pcomplete-here (pcomplete-erc-channels)))
184
185(defun pcomplete/erc-mode/WHOIS ()
186 (while (pcomplete-here (pcomplete-erc-nicks))))
187
188(defun pcomplete/erc-mode/UNIGNORE ()
ff59d266 189 (pcomplete-here (erc-with-server-buffer erc-ignore-list)))
597993cf
MB
190
191;;; Functions that provide possible completions.
192
193(defun pcomplete-erc-commands ()
194 "Returns a list of strings of the defined user commands."
195 (let ((case-fold-search nil))
196 (mapcar (lambda (x)
197 (concat "/" (downcase (substring (symbol-name x) 8))))
198 (apropos-internal "erc-cmd-[A-Z]+"))))
199
200(defun pcomplete-erc-ops ()
201 "Returns a list of nicks with ops."
202 (let (ops)
203 (maphash (lambda (nick cdata)
204 (if (and (cdr cdata)
205 (erc-channel-user-op (cdr cdata)))
206 (setq ops (cons nick ops))))
207 erc-channel-users)
208 ops))
209
210(defun pcomplete-erc-not-ops ()
211 "Returns a list of nicks without ops."
212 (let (not-ops)
213 (maphash (lambda (nick cdata)
214 (if (and (cdr cdata)
215 (not (erc-channel-user-op (cdr cdata))))
216 (setq not-ops (cons nick not-ops))))
217 erc-channel-users)
218 not-ops))
219
220
0b6bb130
MB
221(defun pcomplete-erc-nicks (&optional postfix ignore-self)
222 "Returns a list of nicks in the current channel.
223Optional argument POSTFIX is something to append to the nickname.
224If optional argument IGNORE-SELF is non-nil, don't return the current nick."
225 (let ((users (if erc-pcomplete-order-nickname-completions
226 (erc-sort-channel-users-by-activity
227 (erc-get-channel-user-list))
228 (erc-get-channel-user-list)))
229 (nicks nil))
230 (dolist (user users)
231 (unless (and ignore-self
232 (string= (erc-server-user-nickname (car user))
233 (erc-current-nick)))
234 (setq nicks (cons (concat (erc-server-user-nickname (car user))
235 postfix)
236 nicks))))
237 (nreverse nicks)))
597993cf
MB
238
239(defun pcomplete-erc-all-nicks (&optional postfix)
240 "Returns a list of all nicks on the current server."
241 (let (nicks)
ff59d266 242 (erc-with-server-buffer
597993cf
MB
243 (maphash (lambda (nick user)
244 (setq nicks (cons (concat nick postfix) nicks)))
245 erc-server-users))
246 nicks))
247
248(defun pcomplete-erc-channels ()
249 "Returns a list of channels associated with the current server."
250 (mapcar (lambda (buf) (with-current-buffer buf (erc-default-target)))
251 (erc-channel-list erc-server-process)))
252
253;;; Functions for parsing
254
255(defun pcomplete-erc-command-name ()
256 "Returns the command name of the first argument."
257 (if (eq (elt (pcomplete-arg 'first) 0) ?/)
258 (upcase (substring (pcomplete-arg 'first) 1))
259 "SAY"))
260
0ff8e1ba 261(defun pcomplete-erc-parse-arguments ()
597993cf
MB
262 "Returns a list of parsed whitespace-separated arguments.
263These are the words from the beginning of the line after the prompt
264up to where point is right now."
265 (let* ((start erc-input-marker)
266 (end (point))
267 args beginnings)
268 (save-excursion
269 (if (< (skip-chars-backward " \t\n" start) 0)
270 (setq args '("")
271 beginnings (list end)))
272 (setq end (point))
273 (while (< (skip-chars-backward "^ \t\n" start) 0)
274 (setq beginnings (cons (point) beginnings)
275 args (cons (buffer-substring-no-properties
276 (point) end)
277 args))
278 (skip-chars-backward " \t\n" start)
279 (setq end (point))))
280 (cons args beginnings)))
281
282(provide 'erc-pcomplete)
283
284;;; erc-pcomplete.el ends here
285;;
286;; Local Variables:
287;; indent-tabs-mode: nil
288;; End:
289