1 ;;; rcirc.el --- default, simple IRC client.
3 ;; Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
6 ;; URL: http://www.nongnu.org/rcirc
9 ;; This file is part of GNU Emacs.
11 ;; This file is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; This file is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
28 ;; Internet Relay Chat (IRC) is a form of instant communication over
29 ;; the Internet. It is mainly designed for group (many-to-many)
30 ;; communication in discussion forums called channels, but also allows
31 ;; one-to-one communication.
33 ;; Rcirc has simple defaults and clear and consistent behaviour.
34 ;; Message arrival timestamps, activity notification on the modeline,
35 ;; message filling, nick completion, and keepalive pings are all
36 ;; enabled by default, but can easily be adjusted or turned off. Each
37 ;; discussion takes place in its own buffer and there is a single
38 ;; server buffer per connection.
40 ;; Open a new irc connection with:
49 (eval-when-compile (require 'cl
))
55 :link
'(custom-manual "(rcirc)")
58 (defcustom rcirc-default-server
"irc.freenode.net"
59 "The default server to connect to."
63 (defcustom rcirc-default-port
6667
64 "The default port to connect to."
68 (defcustom rcirc-default-nick
(user-login-name)
73 (defcustom rcirc-default-user-name
(user-login-name)
74 "Your user name sent to the server when connecting."
78 (defcustom rcirc-default-user-full-name
(if (string= (user-full-name) "")
79 rcirc-default-user-name
81 "The full name sent to the server when connecting."
85 (defcustom rcirc-startup-channels-alist
'(("^irc.freenode.net$" "#rcirc"))
86 "Alist of channels to join at startup.
87 Each element looks like (SERVER-REGEXP . CHANNEL-LIST)."
88 :type
'(alist :key-type string
:value-type
(repeat string
))
91 (defcustom rcirc-fill-flag t
92 "*Non-nil means line-wrap messages printed in channel buffers."
96 (defcustom rcirc-fill-column nil
97 "*Column beyond which automatic line-wrapping should happen.
98 If nil, use value of `fill-column'. If 'frame-width, use the
100 :type
'(choice (const :tag
"Value of `fill-column'")
101 (const :tag
"Full frame width" frame-width
)
102 (integer :tag
"Number of columns"))
105 (defcustom rcirc-fill-prefix nil
106 "*Text to insert before filled lines.
107 If nil, calculate the prefix dynamically to line up text
108 underneath each nick."
109 :type
'(choice (const :tag
"Dynamic" nil
)
110 (string :tag
"Prefix text"))
113 (defvar rcirc-ignore-buffer-activity-flag nil
114 "If non-nil, ignore activity in this buffer.")
115 (make-variable-buffer-local 'rcirc-ignore-buffer-activity-flag
)
117 (defvar rcirc-low-priority-flag nil
118 "If non-nil, activity in this buffer is considered low priority.")
119 (make-variable-buffer-local 'rcirc-low-priority-flag
)
121 (defcustom rcirc-time-format
"%H:%M "
122 "*Describes how timestamps are printed.
123 Used as the first arg to `format-time-string'."
127 (defcustom rcirc-input-ring-size
1024
128 "*Size of input history ring."
132 (defcustom rcirc-read-only-flag t
133 "*Non-nil means make text in IRC buffers read-only."
137 (defcustom rcirc-buffer-maximum-lines nil
138 "*The maximum size in lines for rcirc buffers.
139 Channel buffers are truncated from the top to be no greater than this
140 number. If zero or nil, no truncating is done."
141 :type
'(choice (const :tag
"No truncation" nil
)
142 (integer :tag
"Number of lines"))
145 (defcustom rcirc-scroll-show-maximum-output t
146 "*If non-nil, scroll buffer to keep the point at the bottom of
151 (defcustom rcirc-authinfo nil
152 "List of authentication passwords.
153 Each element of the list is a list with a SERVER-REGEXP string
154 and a method symbol followed by method specific arguments.
156 The valid METHOD symbols are `nickserv', `chanserv' and
159 The required ARGUMENTS for each METHOD symbol are:
160 `nickserv': NICK PASSWORD
161 `chanserv': NICK CHANNEL PASSWORD
162 `bitlbee': NICK PASSWORD
165 ((\"freenode\" nickserv \"bob\" \"p455w0rd\")
166 (\"freenode\" chanserv \"bob\" \"#bobland\" \"passwd99\")
167 (\"bitlbee\" bitlbee \"robert\" \"sekrit\"))"
168 :type
'(alist :key-type
(string :tag
"Server")
169 :value-type
(choice (list :tag
"NickServ"
172 (string :tag
"Password"))
173 (list :tag
"ChanServ"
176 (string :tag
"Channel")
177 (string :tag
"Password"))
181 (string :tag
"Password"))))
184 (defcustom rcirc-auto-authenticate-flag t
185 "*Non-nil means automatically send authentication string to server.
186 See also `rcirc-authinfo'."
190 (defcustom rcirc-prompt
"> "
191 "Prompt string to use in IRC buffers.
193 The following replacements are made:
196 %t is the buffer target, a channel or a user.
198 Setting this alone will not affect the prompt;
199 use either M-x customize or also call `rcirc-update-prompt'."
201 :set
'rcirc-set-changed
202 :initialize
'custom-initialize-default
205 (defcustom rcirc-keywords nil
206 "List of keywords to highlight in message text."
207 :type
'(repeat string
)
210 (defcustom rcirc-ignore-list
()
211 "List of ignored nicks.
212 Use /ignore to list them, use /ignore NICK to add or remove a nick."
213 :type
'(repeat string
)
216 (defvar rcirc-ignore-list-automatic
()
217 "List of ignored nicks added to `rcirc-ignore-list' because of renaming.
218 When an ignored person renames, their nick is added to both lists.
219 Nicks will be removed from the automatic list on follow-up renamings or
222 (defcustom rcirc-bright-nicks nil
223 "List of nicks to be emphasized.
224 See `rcirc-bright-nick' face."
225 :type
'(repeat string
)
228 (defcustom rcirc-dim-nicks nil
229 "List of nicks to be deemphasized.
230 See `rcirc-dim-nick' face."
231 :type
'(repeat string
)
234 (defcustom rcirc-print-hooks nil
235 "Hook run after text is printed.
236 Called with 5 arguments, PROCESS, SENDER, RESPONSE, TARGET and TEXT."
240 (defcustom rcirc-always-use-server-buffer-flag nil
241 "Non-nil means messages without a channel target will go to the server buffer."
245 (defcustom rcirc-decode-coding-system
'utf-8
246 "Coding system used to decode incoming irc messages."
250 (defcustom rcirc-encode-coding-system
'utf-8
251 "Coding system used to encode outgoing irc messages."
255 (defcustom rcirc-coding-system-alist nil
256 "Alist to decide a coding system to use for a channel I/O operation.
257 The format is ((PATTERN . VAL) ...).
258 PATTERN is either a string or a cons of strings.
259 If PATTERN is a string, it is used to match a target.
260 If PATTERN is a cons of strings, the car part is used to match a
261 target, and the cdr part is used to match a server.
262 VAL is either a coding system or a cons of coding systems.
263 If VAL is a coding system, it is used for both decoding and encoding
265 If VAL is a cons of coding systems, the car part is used for decoding,
266 and the cdr part is used for encoding."
267 :type
'(alist :key-type
(choice (string :tag
"Channel Regexp")
268 (cons (string :tag
"Channel Regexp")
269 (string :tag
"Server Regexp")))
270 :value-type
(choice coding-system
271 (cons (coding-system :tag
"Decode")
272 (coding-system :tag
"Encode"))))
275 (defcustom rcirc-multiline-major-mode
'fundamental-mode
276 "Major-mode function to use in multiline edit buffers."
280 (defvar rcirc-nick nil
)
282 (defvar rcirc-prompt-start-marker nil
)
283 (defvar rcirc-prompt-end-marker nil
)
285 (defvar rcirc-nick-table nil
)
287 (defvar rcirc-nick-syntax-table
288 (let ((table (make-syntax-table text-mode-syntax-table
)))
289 (mapc (lambda (c) (modify-syntax-entry c
"w" table
))
291 (modify-syntax-entry ?
' "_" table
)
293 "Syntax table which includes all nick characters as word constituents.")
295 ;; each process has an alist of (target . buffer) pairs
296 (defvar rcirc-buffer-alist nil
)
298 (defvar rcirc-activity nil
299 "List of buffers with unviewed activity.")
301 (defvar rcirc-activity-string
""
302 "String displayed in modeline representing `rcirc-activity'.")
303 (put 'rcirc-activity-string
'risky-local-variable t
)
305 (defvar rcirc-server-buffer nil
306 "The server buffer associated with this channel buffer.")
308 (defvar rcirc-target nil
309 "The channel or user associated with this buffer.")
311 (defvar rcirc-urls nil
312 "List of urls seen in the current buffer.")
313 (put 'rcirc-urls
'permanent-local t
)
315 (defvar rcirc-keepalive-seconds
60
316 "Number of seconds between keepalive pings.
317 If nil, do not send keepalive pings.")
319 (defconst rcirc-id-string
(concat "rcirc on GNU Emacs " emacs-version
))
321 (defvar rcirc-startup-channels nil
)
325 If ARG is non-nil, prompt for a server to connect to."
328 (let* ((server (read-string "IRC Server: " rcirc-default-server
))
329 (port (read-string "IRC Port: " (number-to-string rcirc-default-port
)))
330 (nick (read-string "IRC Nick: " rcirc-default-nick
))
331 (channels (split-string
332 (read-string "IRC Channels: "
333 (mapconcat 'identity
(rcirc-startup-channels server
) " "))
335 (rcirc-connect server port nick rcirc-default-user-name rcirc-default-user-full-name
337 ;; make new connection using defaults unless already connected to
338 ;; the default rcirc-server
340 (dolist (p (rcirc-process-list))
341 (when (string= rcirc-default-server
(process-name p
))
344 (rcirc-connect rcirc-default-server rcirc-default-port
345 rcirc-default-nick rcirc-default-user-name
346 rcirc-default-user-full-name
347 (rcirc-startup-channels rcirc-default-server
))
348 (switch-to-buffer (process-buffer connected
))
349 (message "Connected to %s"
350 (process-contact (get-buffer-process (current-buffer))
353 (defalias 'irc
'rcirc
)
356 (defvar rcirc-process-output nil
)
357 (defvar rcirc-topic nil
)
358 (defvar rcirc-keepalive-timer nil
)
359 (defvar rcirc-last-server-message-time nil
)
360 (defvar rcirc-server nil
)
363 (defun rcirc-connect (&optional server port nick user-name full-name startup-channels
)
365 (message "Connecting to %s..." server
)
366 (let* ((inhibit-eol-conversion)
367 (port-number (if port
369 (string-to-number port
)
372 (server (or server rcirc-default-server
))
373 (nick (or nick rcirc-default-nick
))
374 (user-name (or user-name rcirc-default-user-name
))
375 (full-name (or full-name rcirc-default-user-full-name
))
376 (startup-channels startup-channels
)
377 (process (open-network-stream server nil server port-number
)))
379 (set-process-coding-system process
'raw-text
'raw-text
)
380 (switch-to-buffer (rcirc-generate-new-buffer-name process nil
))
381 (set-process-buffer process
(current-buffer))
382 (rcirc-mode process nil
)
383 (set-process-sentinel process
'rcirc-sentinel
)
384 (set-process-filter process
'rcirc-filter
)
385 (make-local-variable 'rcirc-server
)
386 (setq rcirc-server server
)
387 (make-local-variable 'rcirc-buffer-alist
)
388 (setq rcirc-buffer-alist nil
)
389 (make-local-variable 'rcirc-nick-table
)
390 (setq rcirc-nick-table
(make-hash-table :test
'equal
))
391 (make-local-variable 'rcirc-nick
)
392 (setq rcirc-nick nick
)
393 (make-local-variable 'rcirc-process-output
)
394 (setq rcirc-process-output nil
)
395 (make-local-variable 'rcirc-startup-channels
)
396 (setq rcirc-startup-channels startup-channels
)
397 (make-local-variable 'rcirc-last-server-message-time
)
398 (setq rcirc-last-server-message-time
(current-time))
401 (rcirc-send-string process
(concat "NICK " nick
))
402 (rcirc-send-string process
(concat "USER " user-name
403 " hostname servername :"
406 ;; setup ping timer if necessary
407 (when rcirc-keepalive-seconds
408 (unless rcirc-keepalive-timer
409 (setq rcirc-keepalive-timer
410 (run-at-time 0 rcirc-keepalive-seconds
'rcirc-keepalive
))))
412 (message "Connecting to %s...done" server
)
414 ;; return process object
417 (defmacro with-rcirc-process-buffer
(process &rest body
)
418 (declare (indent 1) (debug t
))
419 `(with-current-buffer (process-buffer ,process
)
422 (defmacro with-rcirc-server-buffer
(&rest body
)
423 (declare (indent 0) (debug t
))
424 `(with-current-buffer rcirc-server-buffer
427 (defun rcirc-keepalive ()
428 "Send keep alive pings to active rcirc processes.
429 Kill processes that have not received a server message since the
431 (if (rcirc-process-list)
432 (mapc (lambda (process)
433 (with-rcirc-process-buffer process
434 (if (> (cadr (time-since rcirc-last-server-message-time
))
435 rcirc-keepalive-seconds
)
436 (kill-process process
)
437 (rcirc-send-string process
(concat "PING " rcirc-server
)))))
438 (rcirc-process-list))
439 (cancel-timer rcirc-keepalive-timer
)
440 (setq rcirc-keepalive-timer nil
)))
442 (defvar rcirc-debug-buffer
" *rcirc debug*")
443 (defvar rcirc-debug-flag nil
444 "If non-nil, write information to `rcirc-debug-buffer'.")
445 (defun rcirc-debug (process text
)
446 "Add an entry to the debug log including PROCESS and TEXT.
447 Debug text is written to `rcirc-debug-buffer' if `rcirc-debug-flag'
449 (when rcirc-debug-flag
451 (save-window-excursion
452 (set-buffer (get-buffer-create rcirc-debug-buffer
))
453 (goto-char (point-max))
456 (format-time-string "%Y-%m-%dT%T ") (process-name process
)
460 (defvar rcirc-sentinel-hooks nil
461 "Hook functions called when the process sentinel is called.
462 Functions are called with PROCESS and SENTINEL arguments.")
464 (defun rcirc-sentinel (process sentinel
)
465 "Called when PROCESS receives SENTINEL."
466 (let ((sentinel (replace-regexp-in-string "\n" "" sentinel
)))
467 (rcirc-debug process
(format "SENTINEL: %S %S\n" process sentinel
))
468 (with-rcirc-process-buffer process
469 (dolist (buffer (cons nil
(mapcar 'cdr rcirc-buffer-alist
)))
470 (with-current-buffer (or buffer
(current-buffer))
471 (rcirc-print process
"rcirc.el" "ERROR" rcirc-target
472 (format "%s: %s (%S)"
473 (process-name process
)
475 (process-status process
)) t
)
476 ;; remove the prompt from buffers
477 (let ((inhibit-read-only t
))
478 (delete-region rcirc-prompt-start-marker
479 rcirc-prompt-end-marker
)))))
480 (run-hook-with-args 'rcirc-sentinel-hooks process sentinel
)))
482 (defun rcirc-process-list ()
483 "Return a list of rcirc processes."
486 (when (buffer-live-p (process-buffer p
))
487 (with-rcirc-process-buffer p
488 (when (eq major-mode
'rcirc-mode
)
489 (setq ps
(cons p ps
))))))
493 (defvar rcirc-receive-message-hooks nil
494 "Hook functions run when a message is received from server.
495 Function is called with PROCESS, COMMAND, SENDER, ARGS and LINE.")
496 (defun rcirc-filter (process output
)
497 "Called when PROCESS receives OUTPUT."
498 (rcirc-debug process output
)
499 (with-rcirc-process-buffer process
500 (setq rcirc-last-server-message-time
(current-time))
501 (setq rcirc-process-output
(concat rcirc-process-output output
))
502 (when (= (aref rcirc-process-output
503 (1- (length rcirc-process-output
))) ?
\n)
505 (rcirc-process-server-response process line
))
506 (split-string rcirc-process-output
"[\n\r]" t
))
507 (setq rcirc-process-output nil
))))
509 (defvar rcirc-trap-errors-flag t
)
510 (defun rcirc-process-server-response (process text
)
511 (if rcirc-trap-errors-flag
513 (rcirc-process-server-response-1 process text
)
515 (rcirc-print process
"RCIRC" "ERROR" nil
516 (format "\"%s\" %s" text err
) t
)))
517 (rcirc-process-server-response-1 process text
)))
519 (defun rcirc-process-server-response-1 (process text
)
520 (if (string-match "^\\(:\\([^ ]+\\) \\)?\\([^ ]+\\) \\(.+\\)$" text
)
521 (let* ((user (match-string 2 text
))
522 (sender (rcirc-user-nick user
))
523 (cmd (match-string 3 text
))
524 (args (match-string 4 text
))
525 (handler (intern-soft (concat "rcirc-handler-" cmd
))))
526 (string-match "^\\([^:]*\\):?\\(.+\\)?$" args
)
527 (let* ((args1 (match-string 1 args
))
528 (args2 (match-string 2 args
))
529 (args (delq nil
(append (split-string args1
" " t
)
531 (if (not (fboundp handler
))
532 (rcirc-handler-generic process cmd sender args text
)
533 (funcall handler process sender args text
))
534 (run-hook-with-args 'rcirc-receive-message-hooks
535 process cmd sender args text
)))
536 (message "UNHANDLED: %s" text
)))
538 (defvar rcirc-responses-no-activity
'("305" "306")
539 "Responses that don't trigger activity in the mode-line indicator.")
541 (defun rcirc-handler-generic (process response sender args text
)
542 "Generic server response handler."
543 (rcirc-print process sender response nil
544 (mapconcat 'identity
(cdr args
) " ")
545 (not (member response rcirc-responses-no-activity
))))
547 (defun rcirc-send-string (process string
)
548 "Send PROCESS a STRING plus a newline."
549 (let ((string (concat (encode-coding-string string rcirc-encode-coding-system
)
551 (unless (eq (process-status process
) 'open
)
552 (error "Network connection to %s is not open"
553 (process-name process
)))
554 (rcirc-debug process string
)
555 (process-send-string process string
)))
557 (defun rcirc-buffer-process (&optional buffer
)
558 "Return the process associated with channel BUFFER.
559 With no argument or nil as argument, use the current buffer."
560 (get-buffer-process (if buffer
561 (with-current-buffer buffer
563 rcirc-server-buffer
)))
565 (defun rcirc-server-name (process)
566 "Return PROCESS server name, given by the 001 response."
567 (with-rcirc-process-buffer process
568 (or rcirc-server rcirc-default-server
)))
570 (defun rcirc-nick (process)
571 "Return PROCESS nick."
572 (with-rcirc-process-buffer process
573 (or rcirc-nick rcirc-default-nick
)))
575 (defun rcirc-buffer-nick (&optional buffer
)
576 "Return the nick associated with BUFFER.
577 With no argument or nil as argument, use the current buffer."
578 (with-current-buffer (or buffer
(current-buffer))
579 (with-current-buffer rcirc-server-buffer
580 (or rcirc-nick rcirc-default-nick
))))
582 (defvar rcirc-max-message-length
420
583 "Messages longer than this value will be split.")
585 (defun rcirc-send-message (process target message
&optional noticep
)
586 "Send TARGET associated with PROCESS a privmsg with text MESSAGE.
587 If NOTICEP is non-nil, send a notice instead of privmsg."
588 ;; max message length is 512 including CRLF
589 (let* ((response (if noticep
"NOTICE" "PRIVMSG"))
590 (oversize (> (length message
) rcirc-max-message-length
))
592 (substring message
0 rcirc-max-message-length
)
594 (text (if (string= text
"")
598 (substring message rcirc-max-message-length
))))
599 (rcirc-get-buffer-create process target
)
600 (rcirc-print process
(rcirc-nick process
) response target text
)
601 (rcirc-send-string process
(concat response
" " target
" :" text
))
602 (when more
(rcirc-send-message process target more noticep
))))
604 (defvar rcirc-input-ring nil
)
605 (defvar rcirc-input-ring-index
0)
606 (defun rcirc-prev-input-string (arg)
607 (ring-ref rcirc-input-ring
(+ rcirc-input-ring-index arg
)))
609 (defun rcirc-insert-prev-input (arg)
611 (when (<= rcirc-prompt-end-marker
(point))
612 (delete-region rcirc-prompt-end-marker
(point-max))
613 (insert (rcirc-prev-input-string 0))
614 (setq rcirc-input-ring-index
(1+ rcirc-input-ring-index
))))
616 (defun rcirc-insert-next-input (arg)
618 (when (<= rcirc-prompt-end-marker
(point))
619 (delete-region rcirc-prompt-end-marker
(point-max))
620 (setq rcirc-input-ring-index
(1- rcirc-input-ring-index
))
621 (insert (rcirc-prev-input-string -
1))))
623 (defvar rcirc-nick-completions nil
)
624 (defvar rcirc-nick-completion-start-offset nil
)
626 (defun rcirc-complete-nick ()
627 "Cycle through nick completions from list of nicks in channel."
629 (if (eq last-command this-command
)
630 (setq rcirc-nick-completions
631 (append (cdr rcirc-nick-completions
)
632 (list (car rcirc-nick-completions
))))
633 (setq rcirc-nick-completion-start-offset
635 (if (re-search-backward " " rcirc-prompt-end-marker t
)
637 rcirc-prompt-end-marker
))
638 rcirc-prompt-end-marker
))
639 (setq rcirc-nick-completions
640 (let ((completion-ignore-case t
))
643 (+ rcirc-prompt-end-marker
644 rcirc-nick-completion-start-offset
)
646 (mapcar (lambda (x) (cons x nil
))
647 (rcirc-channel-nicks (rcirc-buffer-process)
649 (let ((completion (car rcirc-nick-completions
)))
651 (rcirc-put-nick-channel (rcirc-buffer-process) completion rcirc-target
)
652 (delete-region (+ rcirc-prompt-end-marker
653 rcirc-nick-completion-start-offset
)
655 (insert (concat completion
656 (if (= (+ rcirc-prompt-end-marker
657 rcirc-nick-completion-start-offset
)
658 rcirc-prompt-end-marker
)
661 (defun set-rcirc-decode-coding-system (coding-system)
662 "Set the decode coding system used in this channel."
663 (interactive "zCoding system for incoming messages: ")
664 (setq rcirc-decode-coding-system coding-system
))
666 (defun set-rcirc-encode-coding-system (coding-system)
667 "Set the encode coding system used in this channel."
668 (interactive "zCoding system for outgoing messages: ")
669 (setq rcirc-encode-coding-system coding-system
))
671 (defvar rcirc-mode-map
(make-sparse-keymap)
672 "Keymap for rcirc mode.")
674 (define-key rcirc-mode-map
(kbd "RET") 'rcirc-send-input
)
675 (define-key rcirc-mode-map
(kbd "M-p") 'rcirc-insert-prev-input
)
676 (define-key rcirc-mode-map
(kbd "M-n") 'rcirc-insert-next-input
)
677 (define-key rcirc-mode-map
(kbd "TAB") 'rcirc-complete-nick
)
678 (define-key rcirc-mode-map
(kbd "C-c C-b") 'rcirc-browse-url
)
679 (define-key rcirc-mode-map
(kbd "C-c C-c") 'rcirc-edit-multiline
)
680 (define-key rcirc-mode-map
(kbd "C-c C-j") 'rcirc-cmd-join
)
681 (define-key rcirc-mode-map
(kbd "C-c C-k") 'rcirc-cmd-kick
)
682 (define-key rcirc-mode-map
(kbd "C-c C-l") 'rcirc-toggle-low-priority
)
683 (define-key rcirc-mode-map
(kbd "C-c C-d") 'rcirc-cmd-mode
)
684 (define-key rcirc-mode-map
(kbd "C-c C-m") 'rcirc-cmd-msg
)
685 (define-key rcirc-mode-map
(kbd "C-c C-r") 'rcirc-cmd-nick
) ; rename
686 (define-key rcirc-mode-map
(kbd "C-c C-o") 'rcirc-cmd-oper
)
687 (define-key rcirc-mode-map
(kbd "C-c C-p") 'rcirc-cmd-part
)
688 (define-key rcirc-mode-map
(kbd "C-c C-q") 'rcirc-cmd-query
)
689 (define-key rcirc-mode-map
(kbd "C-c C-t") 'rcirc-cmd-topic
)
690 (define-key rcirc-mode-map
(kbd "C-c C-n") 'rcirc-cmd-names
)
691 (define-key rcirc-mode-map
(kbd "C-c C-w") 'rcirc-cmd-whois
)
692 (define-key rcirc-mode-map
(kbd "C-c C-x") 'rcirc-cmd-quit
)
693 (define-key rcirc-mode-map
(kbd "C-c TAB") ; C-i
694 'rcirc-toggle-ignore-buffer-activity
)
695 (define-key rcirc-mode-map
(kbd "C-c C-s") 'rcirc-switch-to-server-buffer
)
696 (define-key rcirc-mode-map
(kbd "C-c C-a") 'rcirc-jump-to-first-unread-line
)
698 (defvar rcirc-browse-url-map
(make-sparse-keymap)
699 "Keymap used for browsing URLs in `rcirc-mode'.")
701 (define-key rcirc-browse-url-map
(kbd "RET") 'rcirc-browse-url-at-point
)
702 (define-key rcirc-browse-url-map
(kbd "<mouse-2>") 'rcirc-browse-url-at-mouse
)
704 (defvar rcirc-short-buffer-name nil
705 "Generated abbreviation to use to indicate buffer activity.")
707 (defvar rcirc-mode-hook nil
708 "Hook run when setting up rcirc buffer.")
710 (defvar rcirc-last-post-time nil
)
712 (defun rcirc-mode (process target
)
713 "Major mode for IRC channel buffers.
716 (kill-all-local-variables)
717 (use-local-map rcirc-mode-map
)
718 (setq mode-name
"rcirc")
719 (setq major-mode
'rcirc-mode
)
721 (make-local-variable 'rcirc-input-ring
)
722 (setq rcirc-input-ring
(make-ring rcirc-input-ring-size
))
723 (make-local-variable 'rcirc-server-buffer
)
724 (setq rcirc-server-buffer
(process-buffer process
))
725 (make-local-variable 'rcirc-target
)
726 (setq rcirc-target target
)
727 (make-local-variable 'rcirc-topic
)
728 (setq rcirc-topic nil
)
729 (make-local-variable 'rcirc-last-post-time
)
730 (setq rcirc-last-post-time
(current-time))
732 (make-local-variable 'rcirc-short-buffer-name
)
733 (setq rcirc-short-buffer-name nil
)
734 (make-local-variable 'rcirc-urls
)
735 (setq use-hard-newlines t
)
737 (make-local-variable 'rcirc-decode-coding-system
)
738 (make-local-variable 'rcirc-encode-coding-system
)
739 (dolist (i rcirc-coding-system-alist
)
740 (let ((chan (if (consp (car i
)) (caar i
) (car i
)))
741 (serv (if (consp (car i
)) (cdar i
) "")))
742 (when (and (string-match chan
(or target
""))
743 (string-match serv
(rcirc-server-name process
)))
744 (setq rcirc-decode-coding-system
(if (consp (cdr i
)) (cadr i
) (cdr i
))
745 rcirc-encode-coding-system
(if (consp (cdr i
)) (cddr i
) (cdr i
))))))
747 ;; setup the prompt and markers
748 (make-local-variable 'rcirc-prompt-start-marker
)
749 (setq rcirc-prompt-start-marker
(make-marker))
750 (set-marker rcirc-prompt-start-marker
(point-max))
751 (make-local-variable 'rcirc-prompt-end-marker
)
752 (setq rcirc-prompt-end-marker
(make-marker))
753 (set-marker rcirc-prompt-end-marker
(point-max))
754 (rcirc-update-prompt)
755 (goto-char rcirc-prompt-end-marker
)
756 (make-local-variable 'overlay-arrow-position
)
757 (setq overlay-arrow-position
(make-marker))
758 (set-marker overlay-arrow-position nil
)
760 ;; if the user changes the major mode or kills the buffer, there is
761 ;; cleanup work to do
762 (add-hook 'change-major-mode-hook
'rcirc-change-major-mode-hook nil t
)
763 (add-hook 'kill-buffer-hook
'rcirc-kill-buffer-hook nil t
)
765 ;; add to buffer list, and update buffer abbrevs
766 (when target
; skip server buffer
767 (let ((buffer (current-buffer)))
768 (with-rcirc-process-buffer process
769 (setq rcirc-buffer-alist
(cons (cons target buffer
)
770 rcirc-buffer-alist
))))
771 (rcirc-update-short-buffer-names))
773 (run-hooks 'rcirc-mode-hook
))
775 (defun rcirc-update-prompt (&optional all
)
776 "Reset the prompt string in the current buffer.
778 If ALL is non-nil, update prompts in all IRC buffers."
780 (mapc (lambda (process)
781 (mapc (lambda (buffer)
782 (with-current-buffer buffer
783 (rcirc-update-prompt)))
784 (with-rcirc-process-buffer process
785 (mapcar 'cdr rcirc-buffer-alist
))))
786 (rcirc-process-list))
787 (let ((inhibit-read-only t
)
788 (prompt (or rcirc-prompt
"")))
791 (replace-regexp-in-string (car rep
) (cdr rep
) prompt
)))
792 (list (cons "%n" (rcirc-buffer-nick))
793 (cons "%s" (with-rcirc-server-buffer (or rcirc-server
"")))
794 (cons "%t" (or rcirc-target
""))))
796 (delete-region rcirc-prompt-start-marker rcirc-prompt-end-marker
)
797 (goto-char rcirc-prompt-start-marker
)
798 (let ((start (point)))
799 (insert-before-markers prompt
)
800 (set-marker rcirc-prompt-start-marker start
)
801 (when (not (zerop (- rcirc-prompt-end-marker
802 rcirc-prompt-start-marker
)))
803 (add-text-properties rcirc-prompt-start-marker
804 rcirc-prompt-end-marker
805 (list 'face
'rcirc-prompt
806 'read-only t
'field t
807 'front-sticky t
'rear-nonsticky t
))))))))
809 (defun rcirc-set-changed (option value
)
810 "Set OPTION to VALUE and do updates after a customization change."
811 (set-default option value
)
812 (cond ((eq option
'rcirc-prompt
)
813 (rcirc-update-prompt 'all
))
815 (error "Bad option %s" option
))))
817 (defun rcirc-channel-p (target)
818 "Return t if TARGET is a channel name."
820 (not (zerop (length target
)))
821 (or (eq (aref target
0) ?
#)
822 (eq (aref target
0) ?
&))))
824 (defun rcirc-kill-buffer-hook ()
825 "Part the channel when killing an rcirc buffer."
826 (when (eq major-mode
'rcirc-mode
)
827 (rcirc-clean-up-buffer "Killed buffer")))
829 (defun rcirc-change-major-mode-hook ()
830 "Part the channel when changing the major-mode."
831 (rcirc-clean-up-buffer "Changed major mode"))
833 (defun rcirc-clean-up-buffer (reason)
834 (let ((buffer (current-buffer)))
835 (rcirc-clear-activity buffer
)
836 (when (and (rcirc-buffer-process)
837 (eq (process-status (rcirc-buffer-process)) 'open
))
838 (with-rcirc-server-buffer
839 (setq rcirc-buffer-alist
840 (rassq-delete-all buffer rcirc-buffer-alist
)))
841 (rcirc-update-short-buffer-names)
842 (if (rcirc-channel-p rcirc-target
)
843 (rcirc-send-string (rcirc-buffer-process)
844 (concat "PART " rcirc-target
" :" reason
))
846 (rcirc-remove-nick-channel (rcirc-buffer-process)
850 (defun rcirc-generate-new-buffer-name (process target
)
851 "Return a buffer name based on PROCESS and TARGET.
852 This is used for the initial name given to IRC buffers."
854 (concat target
"@" (process-name process
))
855 (concat "*" (process-name process
) "*")))
857 (defun rcirc-get-buffer (process target
&optional server
)
858 "Return the buffer associated with the PROCESS and TARGET.
860 If optional argument SERVER is non-nil, return the server buffer
861 if there is no existing buffer for TARGET, otherwise return nil."
862 (with-rcirc-process-buffer process
865 (let ((buffer (cdr (assoc-string target rcirc-buffer-alist t
))))
866 (or buffer
(when server
(current-buffer)))))))
868 (defun rcirc-get-buffer-create (process target
)
869 "Return the buffer associated with the PROCESS and TARGET.
870 Create the buffer if it doesn't exist."
871 (let ((buffer (rcirc-get-buffer process target
)))
872 (if (and buffer
(buffer-live-p buffer
))
873 (with-current-buffer buffer
874 (when (not rcirc-target
)
875 (setq rcirc-target target
))
878 (with-rcirc-process-buffer process
879 (let ((new-buffer (get-buffer-create
880 (rcirc-generate-new-buffer-name process target
))))
881 (with-current-buffer new-buffer
882 (rcirc-mode process target
))
883 (rcirc-put-nick-channel process
(rcirc-nick process
) target
)
886 (defun rcirc-send-input ()
887 "Send input to target associated with the current buffer."
889 (if (< (point) rcirc-prompt-end-marker
)
890 ;; copy the line down to the input area
893 (let ((start (if (eq (point) (point-min))
895 (if (get-text-property (1- (point)) 'hard
)
897 (previous-single-property-change (point) 'hard
))))
898 (end (next-single-property-change (1+ (point)) 'hard
)))
899 (goto-char (point-max))
900 (insert (replace-regexp-in-string
902 (buffer-substring-no-properties start end
)))))
904 (goto-char (point-max))
905 (when (not (equal 0 (- (point) rcirc-prompt-end-marker
)))
906 ;; delete a trailing newline
907 (when (eq (point) (point-at-bol))
908 (delete-backward-char 1))
909 (let ((input (buffer-substring-no-properties
910 rcirc-prompt-end-marker
(point))))
911 (dolist (line (split-string input
"\n"))
912 (rcirc-process-input-line line
))
915 (ring-insert rcirc-input-ring input
)
916 (setq rcirc-input-ring-index
0))))))
918 (defun rcirc-process-input-line (line)
919 (if (string-match "^/\\([^ ]+\\) ?\\(.*\\)$" line
)
920 (rcirc-process-command (match-string 1 line
)
921 (match-string 2 line
)
923 (rcirc-process-message line
)))
925 (defun rcirc-process-message (line)
926 (if (not rcirc-target
)
927 (message "Not joined (no target)")
928 (delete-region rcirc-prompt-end-marker
(point))
929 (rcirc-send-message (rcirc-buffer-process) rcirc-target line
)
930 (setq rcirc-last-post-time
(current-time))))
932 (defun rcirc-process-command (command args line
)
933 (if (eq (aref command
0) ?
/)
934 ;; "//text" will send "/text" as a message
935 (rcirc-process-message (substring line
1))
936 (let ((fun (intern-soft (concat "rcirc-cmd-" command
)))
937 (process (rcirc-buffer-process)))
939 (with-current-buffer (current-buffer)
940 (delete-region rcirc-prompt-end-marker
(point))
941 (if (string= command
"me")
942 (rcirc-print process
(rcirc-buffer-nick)
943 "ACTION" rcirc-target args
)
944 (rcirc-print process
(rcirc-buffer-nick)
945 "COMMAND" rcirc-target line
))
946 (set-marker rcirc-prompt-end-marker
(point))
948 (funcall fun args process rcirc-target
)
949 (rcirc-send-string process
950 (concat command
" :" args
)))))))
952 (defvar rcirc-parent-buffer nil
)
953 (defvar rcirc-window-configuration nil
)
954 (defun rcirc-edit-multiline ()
955 "Move current edit to a dedicated buffer."
957 (let ((pos (1+ (- (point) rcirc-prompt-end-marker
))))
958 (goto-char (point-max))
959 (let ((text (buffer-substring rcirc-prompt-end-marker
(point)))
960 (parent (buffer-name)))
961 (delete-region rcirc-prompt-end-marker
(point))
962 (setq rcirc-window-configuration
(current-window-configuration))
963 (pop-to-buffer (concat "*multiline " parent
"*"))
964 (funcall rcirc-multiline-major-mode
)
965 (rcirc-multiline-minor-mode 1)
966 (setq rcirc-parent-buffer parent
)
968 (and (> pos
0) (goto-char pos
))
969 (message "Type C-c C-c to return text to %s, or C-c C-k to cancel" parent
))))
971 (defvar rcirc-multiline-minor-mode-map
(make-sparse-keymap)
972 "Keymap for multiline mode in rcirc.")
973 (define-key rcirc-multiline-minor-mode-map
974 (kbd "C-c C-c") 'rcirc-multiline-minor-submit
)
975 (define-key rcirc-multiline-minor-mode-map
976 (kbd "C-x C-s") 'rcirc-multiline-minor-submit
)
977 (define-key rcirc-multiline-minor-mode-map
978 (kbd "C-c C-k") 'rcirc-multiline-minor-cancel
)
979 (define-key rcirc-multiline-minor-mode-map
980 (kbd "ESC ESC ESC") 'rcirc-multiline-minor-cancel
)
982 (define-minor-mode rcirc-multiline-minor-mode
983 "Minor mode for editing multiple lines in rcirc."
985 :lighter
" rcirc-mline"
986 :keymap rcirc-multiline-minor-mode-map
989 (make-local-variable 'rcirc-parent-buffer
)
990 (put 'rcirc-parent-buffer
'permanent-local t
)
991 (setq fill-column rcirc-max-message-length
))
993 (defun rcirc-multiline-minor-submit ()
994 "Send the text in buffer back to parent buffer."
996 (assert rcirc-parent-buffer
)
997 (untabify (point-min) (point-max))
998 (let ((text (buffer-substring (point-min) (point-max)))
999 (buffer (current-buffer))
1001 (set-buffer rcirc-parent-buffer
)
1002 (goto-char (point-max))
1004 (kill-buffer buffer
)
1005 (set-window-configuration rcirc-window-configuration
)
1006 (goto-char (+ rcirc-prompt-end-marker
(1- pos
)))))
1008 (defun rcirc-multiline-minor-cancel ()
1009 "Cancel the multiline edit."
1011 (kill-buffer (current-buffer))
1012 (set-window-configuration rcirc-window-configuration
))
1014 (defun rcirc-any-buffer (process)
1015 "Return a buffer for PROCESS, either the one selected or the process buffer."
1016 (if rcirc-always-use-server-buffer-flag
1017 (process-buffer process
)
1018 (let ((buffer (window-buffer (selected-window))))
1020 (with-current-buffer buffer
1021 (and (eq major-mode
'rcirc-mode
)
1022 (eq (rcirc-buffer-process) process
))))
1024 (process-buffer process
)))))
1026 (defcustom rcirc-response-formats
1027 '(("PRIVMSG" .
"%T<%N> %m")
1028 ("NOTICE" .
"%T-%N- %m")
1029 ("ACTION" .
"%T[%N %m]")
1030 ("COMMAND" .
"%T%m")
1031 ("ERROR" .
"%T%fw!!! %m")
1032 (t .
"%T%fp*** %fs%n %r %m"))
1033 "An alist of formats used for printing responses.
1034 The format is looked up using the response-type as a key;
1035 if no match is found, the default entry (with a key of `t') is used.
1037 The entry's value part should be a string, which is inserted with
1038 the of the following escape sequences replaced by the described values:
1041 %n The sender's nick
1042 %N The sender's nick (with face `rcirc-my-nick' or `rcirc-other-nick')
1043 %r The response-type
1044 %T The timestamp (with face `rcirc-timestamp')
1046 %fw Following text uses the face `font-lock-warning-face'
1047 %fp Following text uses the face `rcirc-server-prefix'
1048 %fs Following text uses the face `rcirc-server'
1049 %f[FACE] Following text uses the face FACE
1050 %f- Following text uses the default face
1051 %% A literal `%' character"
1052 :type
'(alist :key-type
(choice (string :tag
"Type")
1053 (const :tag
"Default" t
))
1057 (defun rcirc-format-response-string (process sender response target text
)
1058 "Return a nicely-formatted response string, incorporating TEXT
1059 \(and perhaps other arguments). The specific formatting used
1060 is found by looking up RESPONSE in `rcirc-response-formats'."
1062 (split-string (or (cdr (assoc response rcirc-response-formats
))
1063 (cdr (assq t rcirc-response-formats
)))
1065 (sender (or sender
""))
1069 (when (equal (car chunks
) "")
1071 (dolist (chunk chunks
)
1072 (if (equal chunk
"")
1074 (setq key
(aref chunk
0))
1075 (setq chunk
(substring chunk
1)))
1078 ;; %% -- literal % character
1080 ((or (eq key ?n
) (eq key ?N
))
1082 (let ((nick (concat (if (string= (with-rcirc-process-buffer
1088 (and target
(concat "," target
)))))
1092 (cond ((string= sender
(rcirc-nick process
))
1094 ((and rcirc-bright-nicks
1096 (regexp-opt rcirc-bright-nicks
)
1099 ((and rcirc-dim-nicks
1101 (regexp-opt rcirc-dim-nicks
)
1105 'rcirc-other-nick
))))))
1109 (format-time-string rcirc-time-format
(current-time))
1112 ;; %m -- message text
1113 (rcirc-markup-text process sender response
(rcirc-facify text face
)))
1116 (rcirc-facify (or rcirc-target
"") face
))
1119 (rcirc-facify response face
))
1121 ;; %f -- change face
1122 (setq face-key
(aref chunk
0))
1123 (setq chunk
(substring chunk
1))
1124 (cond ((eq face-key ?w
)
1125 ;; %fw -- warning face
1126 (setq face
'font-lock-warning-face
))
1128 ;; %fp -- server-prefix face
1129 (setq face
'rcirc-server-prefix
))
1131 ;; %fs -- warning face
1132 (setq face
'rcirc-server
))
1134 ;; %fs -- warning face
1136 ((and (eq face-key ?\
[)
1137 (string-match "^\\([^]]*\\)[]]" chunk
)
1138 (facep (match-string 1 chunk
)))
1139 ;; %f[...] -- named face
1140 (setq face
(intern (match-string 1 chunk
)))
1141 (setq chunk
(substring chunk
(match-end 0)))))
1143 (setq result
(concat result repl
(rcirc-facify chunk face
))))
1146 (defun rcirc-target-buffer (process sender response target text
)
1147 "Return a buffer to print the server response."
1148 (assert (not (bufferp target
)))
1149 (with-rcirc-process-buffer process
1151 (rcirc-any-buffer process
))
1152 ((not (rcirc-channel-p target
))
1153 ;; message from another user
1154 (if (string= response
"PRIVMSG")
1155 (rcirc-get-buffer-create process
(if (string= sender rcirc-nick
)
1158 (rcirc-get-buffer process target t
)))
1159 ((or (rcirc-get-buffer process target
)
1160 (rcirc-any-buffer process
))))))
1162 (defvar rcirc-activity-types nil
)
1163 (make-variable-buffer-local 'rcirc-activity-types
)
1164 (defvar rcirc-last-sender nil
)
1165 (make-variable-buffer-local 'rcirc-last-sender
)
1167 (defun rcirc-print (process sender response target text
&optional activity
)
1168 "Print TEXT in the buffer associated with TARGET.
1169 Format based on SENDER and RESPONSE. If ACTIVITY is non-nil,
1171 (or text
(setq text
""))
1172 (unless (or (member sender rcirc-ignore-list
)
1173 (member (with-syntax-table rcirc-nick-syntax-table
1174 (when (string-match "^\\([^/]\\w*\\)[:,]" text
)
1175 (match-string 1 text
)))
1177 (let* ((buffer (rcirc-target-buffer process sender response target text
))
1178 (inhibit-read-only t
))
1179 (with-current-buffer buffer
1180 (let ((moving (= (point) rcirc-prompt-end-marker
))
1181 (old-point (point-marker))
1182 (fill-start (marker-position rcirc-prompt-start-marker
)))
1184 (unless (string= sender
(rcirc-nick process
))
1185 ;; only decode text from other senders, not ours
1186 (setq text
(decode-coding-string text rcirc-decode-coding-system
))
1187 ;; mark the line with overlay arrow
1188 (unless (or (marker-position overlay-arrow-position
)
1189 (get-buffer-window (current-buffer)))
1190 (set-marker overlay-arrow-position
1191 (marker-position rcirc-prompt-start-marker
))))
1193 ;; temporarily set the marker insertion-type because
1194 ;; insert-before-markers results in hidden text in new buffers
1195 (goto-char rcirc-prompt-start-marker
)
1196 (set-marker-insertion-type rcirc-prompt-start-marker t
)
1197 (set-marker-insertion-type rcirc-prompt-end-marker t
)
1200 (rcirc-format-response-string process sender response nil
1203 (insert fmted-text
(propertize "\n" 'hard t
))
1204 (set-marker-insertion-type rcirc-prompt-start-marker nil
)
1205 (set-marker-insertion-type rcirc-prompt-end-marker nil
)
1207 (let ((text-start (make-marker)))
1208 (set-marker text-start
1209 (or (next-single-property-change fill-start
1211 rcirc-prompt-end-marker
))
1212 ;; squeeze spaces out of text before rcirc-text
1213 (fill-region fill-start
(1- text-start
))
1215 ;; fill the text we just inserted, maybe
1216 (when (and rcirc-fill-flag
1217 (not (string= response
"372"))) ;/motd
1219 (or rcirc-fill-prefix
1220 (make-string (- text-start fill-start
) ?\s
)))
1221 (fill-column (cond ((eq rcirc-fill-column
'frame-width
)
1226 (fill-region fill-start rcirc-prompt-start-marker
'left t
)))))
1228 ;; set inserted text to be read-only
1229 (when rcirc-read-only-flag
1230 (put-text-property rcirc-prompt-start-marker fill-start
'read-only t
)
1231 (let ((inhibit-read-only t
))
1232 (put-text-property rcirc-prompt-start-marker fill-start
1234 (put-text-property (1- (point)) (point) 'rear-nonsticky t
)))
1236 ;; truncate buffer if it is very long
1238 (when (and rcirc-buffer-maximum-lines
1239 (> rcirc-buffer-maximum-lines
0)
1240 (= (forward-line (- rcirc-buffer-maximum-lines
)) 0))
1241 (delete-region (point-min) (point))))
1243 ;; set the window point for buffers show in windows
1244 (walk-windows (lambda (w)
1245 (when (and (not (eq (selected-window) w
))
1246 (eq (current-buffer)
1248 (>= (window-point w
)
1249 rcirc-prompt-end-marker
))
1250 (set-window-point w
(point-max))))
1253 ;; restore the point
1254 (goto-char (if moving rcirc-prompt-end-marker old-point
))
1256 ;; keep window on bottom line if it was already there
1257 (when rcirc-scroll-show-maximum-output
1258 (walk-windows (lambda (w)
1259 (when (eq (window-buffer w
) (current-buffer))
1260 (with-current-buffer (window-buffer w
)
1261 (when (eq major-mode
'rcirc-mode
)
1262 (with-selected-window w
1263 (when (<= (- (window-height)
1272 ;; flush undo (can we do something smarter here?)
1273 (buffer-disable-undo)
1274 (buffer-enable-undo))
1276 ;; record modeline activity
1278 (not rcirc-ignore-buffer-activity-flag
)
1279 (not (and rcirc-dim-nicks sender
1280 (string-match (regexp-opt rcirc-dim-nicks
) sender
))))
1281 (rcirc-record-activity (current-buffer)
1282 (when (not (rcirc-channel-p rcirc-target
))
1285 (sit-for 0) ; displayed text before hook
1286 (run-hook-with-args 'rcirc-print-hooks
1287 process sender response target text
)))))
1289 (defun rcirc-startup-channels (server)
1290 "Return the list of startup channels for SERVER."
1292 (dolist (i rcirc-startup-channels-alist
)
1293 (if (string-match (car i
) server
)
1294 (setq channels
(append channels
(cdr i
)))))
1297 (defun rcirc-join-channels (process channels
)
1299 (save-window-excursion
1300 (dolist (channel channels
)
1301 (with-rcirc-process-buffer process
1302 (rcirc-cmd-join channel process
)))))
1305 (defun rcirc-user-nick (user)
1306 "Return the nick from USER. Remove any non-nick junk."
1308 (if (string-match "^[@%+]?\\([^! ]+\\)!?" (or user
""))
1309 (match-string 1 user
)
1312 (defun rcirc-user-non-nick (user)
1313 "Return the non-nick portion of USER."
1314 (if (string-match "^[@+]?[^! ]+!?\\(.*\\)" (or user
""))
1315 (match-string 1 user
)
1318 (defun rcirc-nick-channels (process nick
)
1319 "Return list of channels for NICK."
1320 (with-rcirc-process-buffer process
1321 (mapcar (lambda (x) (car x
))
1322 (gethash nick rcirc-nick-table
))))
1324 (defun rcirc-put-nick-channel (process nick channel
)
1325 "Add CHANNEL to list associated with NICK."
1326 (let ((nick (rcirc-user-nick nick
)))
1327 (with-rcirc-process-buffer process
1328 (let* ((chans (gethash nick rcirc-nick-table
))
1329 (record (assoc-string channel chans t
)))
1331 (setcdr record
(current-time))
1332 (puthash nick
(cons (cons channel
(current-time))
1334 rcirc-nick-table
))))))
1336 (defun rcirc-nick-remove (process nick
)
1337 "Remove NICK from table."
1338 (with-rcirc-process-buffer process
1339 (remhash nick rcirc-nick-table
)))
1341 (defun rcirc-remove-nick-channel (process nick channel
)
1342 "Remove the CHANNEL from list associated with NICK."
1343 (with-rcirc-process-buffer process
1344 (let* ((chans (gethash nick rcirc-nick-table
))
1346 ;; instead of assoc-string-delete-all:
1347 (let ((record (assoc-string channel chans t
)))
1349 (setcar record
'delete
)
1350 (assq-delete-all 'delete chans
)))))
1352 (puthash nick newchans rcirc-nick-table
)
1353 (remhash nick rcirc-nick-table
)))))
1355 (defun rcirc-channel-nicks (process target
)
1356 "Return the list of nicks associated with TARGET sorted by last activity."
1358 (if (rcirc-channel-p target
)
1359 (with-rcirc-process-buffer process
1363 (let ((record (assoc-string target v t
)))
1365 (setq nicks
(cons (cons k
(cdr record
)) nicks
)))))
1367 (mapcar (lambda (x) (car x
))
1368 (sort nicks
(lambda (x y
) (time-less-p (cdr y
) (cdr x
)))))))
1371 (defun rcirc-ignore-update-automatic (nick)
1372 "Remove NICK from `rcirc-ignore-list'
1373 if NICK is also on `rcirc-ignore-list-automatic'."
1374 (when (member nick rcirc-ignore-list-automatic
)
1375 (setq rcirc-ignore-list-automatic
1376 (delete nick rcirc-ignore-list-automatic
)
1378 (delete nick rcirc-ignore-list
))))
1380 ;;; activity tracking
1381 (defvar rcirc-track-minor-mode-map
(make-sparse-keymap)
1382 "Keymap for rcirc track minor mode.")
1384 (define-key rcirc-track-minor-mode-map
(kbd "C-c `") 'rcirc-next-active-buffer
)
1385 (define-key rcirc-track-minor-mode-map
(kbd "C-c C-@") 'rcirc-next-active-buffer
)
1386 (define-key rcirc-track-minor-mode-map
(kbd "C-c C-SPC") 'rcirc-next-active-buffer
)
1389 (define-minor-mode rcirc-track-minor-mode
1390 "Global minor mode for tracking activity in rcirc buffers."
1393 :keymap rcirc-track-minor-mode-map
1396 (or global-mode-string
(setq global-mode-string
'("")))
1397 ;; toggle the mode-line channel indicator
1398 (if rcirc-track-minor-mode
1400 (and (not (memq 'rcirc-activity-string global-mode-string
))
1401 (setq global-mode-string
1402 (append global-mode-string
'(rcirc-activity-string))))
1403 (add-hook 'window-configuration-change-hook
1404 'rcirc-window-configuration-change
))
1405 (setq global-mode-string
1406 (delete 'rcirc-activity-string global-mode-string
))
1407 (remove-hook 'window-configuration-change-hook
1408 'rcirc-window-configuration-change
)))
1410 (or (assq 'rcirc-ignore-buffer-activity-flag minor-mode-alist
)
1411 (setq minor-mode-alist
1412 (cons '(rcirc-ignore-buffer-activity-flag " Ignore") minor-mode-alist
)))
1413 (or (assq 'rcirc-low-priority-flag minor-mode-alist
)
1414 (setq minor-mode-alist
1415 (cons '(rcirc-low-priority-flag " LowPri") minor-mode-alist
)))
1417 (defun rcirc-toggle-ignore-buffer-activity ()
1418 "Toggle the value of `rcirc-ignore-buffer-activity-flag'."
1420 (setq rcirc-ignore-buffer-activity-flag
1421 (not rcirc-ignore-buffer-activity-flag
))
1422 (message (if rcirc-ignore-buffer-activity-flag
1423 "Ignore activity in this buffer"
1424 "Notice activity in this buffer"))
1425 (force-mode-line-update))
1427 (defun rcirc-toggle-low-priority ()
1428 "Toggle the value of `rcirc-low-priority-flag'."
1430 (setq rcirc-low-priority-flag
1431 (not rcirc-low-priority-flag
))
1432 (message (if rcirc-low-priority-flag
1433 "Activity in this buffer is low priority"
1434 "Activity in this buffer is normal priority"))
1435 (force-mode-line-update))
1437 (defvar rcirc-switch-to-buffer-function
'switch-to-buffer
1438 "Function to use when switching buffers.
1439 Possible values are `switch-to-buffer', `pop-to-buffer', and
1442 (defun rcirc-switch-to-server-buffer ()
1443 "Switch to the server buffer associated with current channel buffer."
1445 (funcall rcirc-switch-to-buffer-function rcirc-server-buffer
))
1447 (defun rcirc-jump-to-first-unread-line ()
1448 "Move the point to the first unread line in this buffer."
1450 (when (marker-position overlay-arrow-position
)
1451 (goto-char overlay-arrow-position
)))
1453 (defvar rcirc-last-non-irc-buffer nil
1454 "The buffer to switch to when there is no more activity.")
1456 (defun rcirc-next-active-buffer (arg)
1457 "Go to the next rcirc buffer with activity.
1458 With prefix ARG, go to the next low priority buffer with activity.
1459 The function given by `rcirc-switch-to-buffer-function' is used to
1462 (let* ((pair (rcirc-split-activity rcirc-activity
))
1465 (if (or (and (not arg
) hipri
)
1468 (unless (eq major-mode
'rcirc-mode
)
1469 (setq rcirc-last-non-irc-buffer
(current-buffer)))
1470 (funcall rcirc-switch-to-buffer-function
1471 (car (if arg lopri hipri
))))
1472 (if (eq major-mode
'rcirc-mode
)
1473 (if (not (and rcirc-last-non-irc-buffer
1474 (buffer-live-p rcirc-last-non-irc-buffer
)))
1475 (message "No IRC activity. Start something.")
1476 (message "No more IRC activity. Go back to work.")
1477 (funcall rcirc-switch-to-buffer-function rcirc-last-non-irc-buffer
)
1478 (setq rcirc-last-non-irc-buffer nil
))
1484 (key-description (this-command-keys))
1485 " for low priority activity."))))))))
1487 (defvar rcirc-activity-hooks nil
1488 "Hook to be run when there is channel activity.
1490 Functions are called with a single argument, the buffer with the
1491 activity. Only run if the buffer is not visible and
1492 `rcirc-ignore-buffer-activity-flag' is non-nil.")
1494 (defun rcirc-record-activity (buffer &optional type
)
1495 "Record BUFFER activity with TYPE."
1496 (with-current-buffer buffer
1497 (when (not (get-buffer-window (current-buffer) t
))
1498 (setq rcirc-activity
1499 (sort (add-to-list 'rcirc-activity
(current-buffer))
1501 (let ((t1 (with-current-buffer b1 rcirc-last-post-time
))
1502 (t2 (with-current-buffer b2 rcirc-last-post-time
)))
1503 (time-less-p t2 t1
)))))
1504 (pushnew type rcirc-activity-types
)
1505 (rcirc-update-activity-string)))
1506 (run-hook-with-args 'rcirc-activity-hooks buffer
))
1508 (defun rcirc-clear-activity (buffer)
1509 "Clear the BUFFER activity."
1510 (setq rcirc-activity
(delete buffer rcirc-activity
))
1511 (with-current-buffer buffer
1512 (setq rcirc-activity-types nil
)))
1514 (defun rcirc-split-activity (activity)
1515 "Return a cons cell with ACTIVITY split into (lopri . hipri)."
1517 (dolist (buf rcirc-activity
)
1518 (with-current-buffer buf
1519 (if (and rcirc-low-priority-flag
1520 (not (member 'nick rcirc-activity-types
)))
1521 (add-to-list 'lopri buf t
)
1522 (add-to-list 'hipri buf t
))))
1523 (cons lopri hipri
)))
1525 ;; TODO: add mouse properties
1526 (defun rcirc-update-activity-string ()
1527 "Update mode-line string."
1528 (let* ((pair (rcirc-split-activity rcirc-activity
))
1531 (setq rcirc-activity-string
1532 (cond ((or hipri lopri
)
1535 (rcirc-activity-string hipri
)
1536 (and hipri lopri
",")
1539 (rcirc-activity-string lopri
)
1543 ((not (null (rcirc-process-list)))
1547 (defun rcirc-activity-string (buffers)
1548 (mapconcat (lambda (b)
1549 (let ((s (substring-no-properties (rcirc-short-buffer-name b
))))
1550 (with-current-buffer b
1551 (dolist (type rcirc-activity-types
)
1552 (rcirc-add-face 0 (length s
)
1554 (nick 'rcirc-track-nick
)
1555 (keyword 'rcirc-track-keyword
))
1560 (defun rcirc-short-buffer-name (buffer)
1561 "Return a short name for BUFFER to use in the modeline indicator."
1562 (with-current-buffer buffer
1563 (or rcirc-short-buffer-name
(buffer-name))))
1565 (defvar rcirc-current-buffer nil
)
1566 (defun rcirc-window-configuration-change ()
1567 "Go through visible windows and remove buffers from activity list.
1568 Also, clear the overlay arrow if the current buffer is now hidden."
1569 (let ((current-now-hidden t
))
1570 (walk-windows (lambda (w)
1571 (let ((buf (window-buffer w
)))
1572 (with-current-buffer buf
1573 (when (eq major-mode
'rcirc-mode
)
1574 (rcirc-clear-activity buf
)))
1575 (when (eq buf rcirc-current-buffer
)
1576 (setq current-now-hidden nil
)))))
1577 ;; add overlay arrow if the buffer isn't displayed
1578 (when (and current-now-hidden
1579 rcirc-current-buffer
1580 (buffer-live-p rcirc-current-buffer
))
1581 (with-current-buffer rcirc-current-buffer
1582 (when (and (eq major-mode
'rcirc-mode
)
1583 (marker-position overlay-arrow-position
))
1584 (set-marker overlay-arrow-position nil
)))))
1586 ;; remove any killed buffers from list
1587 (setq rcirc-activity
1588 (delq nil
(mapcar (lambda (buf) (when (buffer-live-p buf
) buf
))
1590 (rcirc-update-activity-string)
1591 (setq rcirc-current-buffer
(current-buffer)))
1594 ;;; buffer name abbreviation
1595 (defun rcirc-update-short-buffer-names ()
1597 (apply 'append
(mapcar (lambda (process)
1598 (with-rcirc-process-buffer process
1599 rcirc-buffer-alist
))
1600 (rcirc-process-list)))))
1601 (dolist (i (rcirc-abbreviate bufalist
))
1602 (when (buffer-live-p (cdr i
))
1603 (with-current-buffer (cdr i
)
1604 (setq rcirc-short-buffer-name
(car i
)))))))
1606 (defun rcirc-abbreviate (pairs)
1607 (apply 'append
(mapcar 'rcirc-rebuild-tree
(rcirc-make-trees pairs
))))
1609 (defun rcirc-rebuild-tree (tree &optional acc
)
1610 (let ((ch (char-to-string (car tree
))))
1611 (dolist (x (cdr tree
))
1613 (setq acc
(append acc
1615 (cons (concat ch
(car y
))
1617 (rcirc-rebuild-tree x
))))
1618 (setq acc
(cons (cons ch x
) acc
))))
1621 (defun rcirc-make-trees (pairs)
1623 (mapc (lambda (pair)
1625 (let* ((str (car pair
))
1627 (char (unless (zerop (length str
))
1629 (rest (unless (zerop (length str
))
1631 (part (if char
(assq char alist
))))
1633 ;; existing partition
1634 (setcdr part
(cons (cons rest data
) (cdr part
)))
1636 (setq alist
(cons (if char
1637 (list char
(cons rest data
))
1640 (setq alist
(cons pair alist
))))
1642 ;; recurse into cdrs of alist
1644 (when (and (listp x
) (listp (cadr x
)))
1645 (setcdr x
(if (> (length (cdr x
)) 1)
1646 (rcirc-make-trees (cdr x
))
1647 (setcdr x
(list (cdadr x
)))))))
1650 ;;; /commands these are called with 3 args: PROCESS, TARGET, which is
1651 ;; the current buffer/channel/user, and ARGS, which is a string
1652 ;; containing the text following the /cmd.
1654 (defmacro defun-rcirc-command
(command argument docstring interactive-form
1657 `(defun ,(intern (concat "rcirc-cmd-" (symbol-name command
)))
1658 (,@argument
&optional process target
)
1659 ,(concat docstring
"\n\nNote: If PROCESS or TARGET are nil, the values given"
1660 "\nby `rcirc-buffer-process' and `rcirc-target' will be used.")
1662 (let ((process (or process
(rcirc-buffer-process)))
1663 (target (or target rcirc-target
)))
1666 (defun-rcirc-command msg
(message)
1667 "Send private MESSAGE to TARGET."
1671 (setq target
(completing-read "Message nick: "
1672 (with-rcirc-server-buffer
1674 (when (> (length target
) 0)
1675 (setq message
(read-string (format "Message %s: " target
)))
1676 (when (> (length message
) 0)
1677 (rcirc-send-message process target message
))))
1678 (if (not (string-match "\\([^ ]+\\) \\(.+\\)" message
))
1679 (message "Not enough args, or something.")
1680 (setq target
(match-string 1 message
)
1681 message
(match-string 2 message
))
1682 (rcirc-send-message process target message
))))
1684 (defun-rcirc-command query
(nick)
1685 "Open a private chat buffer to NICK."
1686 (interactive (list (completing-read "Query nick: "
1687 (with-rcirc-server-buffer rcirc-nick-table
))))
1688 (let ((existing-buffer (rcirc-get-buffer process nick
)))
1689 (switch-to-buffer (or existing-buffer
1690 (rcirc-get-buffer-create process nick
)))
1691 (when (not existing-buffer
)
1692 (rcirc-cmd-whois nick
))))
1694 (defun-rcirc-command join
(channel)
1696 (interactive "sJoin channel: ")
1697 (let ((buffer (rcirc-get-buffer-create process
1698 (car (split-string channel
)))))
1699 (rcirc-send-string process
(concat "JOIN " channel
))
1700 (when (not (eq (selected-window) (minibuffer-window)))
1701 (funcall rcirc-switch-to-buffer-function buffer
))))
1703 (defun-rcirc-command part
(channel)
1705 (interactive "sPart channel: ")
1706 (let ((channel (if (> (length channel
) 0) channel target
)))
1707 (rcirc-send-string process
(concat "PART " channel
" :" rcirc-id-string
))))
1709 (defun-rcirc-command quit
(reason)
1710 "Send a quit message to server with REASON."
1711 (interactive "sQuit reason: ")
1712 (rcirc-send-string process
(concat "QUIT :"
1713 (if (not (zerop (length reason
)))
1717 (defun-rcirc-command nick
(nick)
1718 "Change nick to NICK."
1721 (setq nick
(read-string "New nick: " (rcirc-nick process
))))
1722 (rcirc-send-string process
(concat "NICK " nick
)))
1724 (defun-rcirc-command names
(channel)
1725 "Display list of names in CHANNEL or in current channel if CHANNEL is nil.
1726 If called interactively, prompt for a channel when prefix arg is supplied."
1730 (setq channel
(read-string "List names in channel: " target
))))
1731 (let ((channel (if (> (length channel
) 0)
1734 (rcirc-send-string process
(concat "NAMES " channel
))))
1736 (defun-rcirc-command topic
(topic)
1737 "List TOPIC for the TARGET channel.
1738 With a prefix arg, prompt for new topic."
1740 (if (and (interactive-p) topic
)
1741 (setq topic
(read-string "New Topic: " rcirc-topic
)))
1742 (rcirc-send-string process
(concat "TOPIC " target
1743 (when (> (length topic
) 0)
1744 (concat " :" topic
)))))
1746 (defun-rcirc-command whois
(nick)
1747 "Request information from server about NICK."
1749 (completing-read "Whois: "
1750 (with-rcirc-server-buffer rcirc-nick-table
))))
1751 (rcirc-send-string process
(concat "WHOIS " nick
)))
1753 (defun-rcirc-command mode
(args)
1754 "Set mode with ARGS."
1755 (interactive (list (concat (read-string "Mode nick or channel: ")
1756 " " (read-string "Mode: "))))
1757 (rcirc-send-string process
(concat "MODE " args
)))
1759 (defun-rcirc-command list
(channels)
1760 "Request information on CHANNELS from server."
1761 (interactive "sList Channels: ")
1762 (rcirc-send-string process
(concat "LIST " channels
)))
1764 (defun-rcirc-command oper
(args)
1765 "Send operator command to server."
1766 (interactive "sOper args: ")
1767 (rcirc-send-string process
(concat "OPER " args
)))
1769 (defun-rcirc-command quote
(message)
1770 "Send MESSAGE literally to server."
1771 (interactive "sServer message: ")
1772 (rcirc-send-string process message
))
1774 (defun-rcirc-command kick
(arg)
1775 "Kick NICK from current channel."
1777 (concat (completing-read "Kick nick: "
1778 (rcirc-channel-nicks
1779 (rcirc-buffer-process)
1781 (read-from-minibuffer "Kick reason: "))))
1782 (let* ((arglist (split-string arg
))
1783 (argstring (concat (car arglist
) " :"
1784 (mapconcat 'identity
(cdr arglist
) " "))))
1785 (rcirc-send-string process
(concat "KICK " target
" " argstring
))))
1787 (defun rcirc-cmd-ctcp (args &optional process target
)
1788 (if (string-match "^\\([^ ]+\\)\\s-+\\(.+\\)$" args
)
1789 (let ((target (match-string 1 args
))
1790 (request (match-string 2 args
)))
1791 (rcirc-send-string process
1792 (format "PRIVMSG %s \C-a%s\C-a"
1793 target
(upcase request
))))
1794 (rcirc-print process
(rcirc-nick process
) "ERROR" nil
1795 "usage: /ctcp NICK REQUEST")))
1797 (defun rcirc-cmd-me (args &optional process target
)
1798 (rcirc-send-string process
(format "PRIVMSG %s :\C-aACTION %s\C-a"
1801 (defun rcirc-add-or-remove (set &optional elt
)
1802 (if (and elt
(not (string= "" elt
)))
1803 (if (member-ignore-case elt set
)
1808 (defun-rcirc-command ignore
(nick)
1809 "Manage the ignore list.
1810 Ignore NICK, unignore NICK if already ignored, or list ignored
1811 nicks when no NICK is given. When listing ignored nicks, the
1812 ones added to the list automatically are marked with an asterisk."
1813 (interactive "sToggle ignoring of nick: ")
1814 (setq rcirc-ignore-list
(rcirc-add-or-remove rcirc-ignore-list nick
))
1815 (rcirc-print process nil
"IGNORE" target
1819 (if (member nick rcirc-ignore-list-automatic
)
1821 rcirc-ignore-list
" ")))
1823 (defun-rcirc-command bright
(nick)
1824 "Manage the bright nick list."
1825 (interactive "sToggle emphasis of nick: ")
1826 (setq rcirc-bright-nicks
(rcirc-add-or-remove rcirc-bright-nicks nick
))
1827 (rcirc-print process nil
"BRIGHT" target
1828 (mapconcat 'identity rcirc-bright-nicks
" ")))
1830 (defun-rcirc-command dim
(nick)
1831 "Manage the dim nick list."
1832 (interactive "sToggle deemphasis of nick: ")
1833 (setq rcirc-dim-nicks
(rcirc-add-or-remove rcirc-dim-nicks nick
))
1834 (rcirc-print process nil
"DIM" target
1835 (mapconcat 'identity rcirc-dim-nicks
" ")))
1837 (defun-rcirc-command keyword
(keyword)
1838 "Manage the keyword list.
1839 Mark KEYWORD, unmark KEYWORD if already marked, or list marked
1840 keywords when no KEYWORD is given."
1841 (interactive "sToggle highlighting of keyword: ")
1842 (setq rcirc-keywords
(rcirc-add-or-remove rcirc-keywords keyword
))
1843 (rcirc-print process nil
"KEYWORD" target
1844 (mapconcat 'identity rcirc-keywords
" ")))
1847 (defun rcirc-add-face (start end name
&optional object
)
1848 "Add face NAME to the face text property of the text from START to END."
1853 (setq prop
(get-text-property pos
'face object
)
1854 next
(next-single-property-change pos
'face object end
))
1855 (unless (member name
(get-text-property pos
'face object
))
1856 (add-text-properties pos next
(list 'face
(cons name prop
)) object
))
1859 (defun rcirc-facify (string face
)
1860 "Return a copy of STRING with FACE property added."
1861 (let ((string (or string
"")))
1862 (rcirc-add-face 0 (length string
) face string
)
1865 (defvar rcirc-url-regexp
1869 (or (and (or "http" "https" "ftp" "file" "gopher" "news"
1870 "telnet" "wais" "mailto")
1873 (1+ (char "-a-zA-Z0-9_."))
1874 (1+ (char "-a-zA-Z0-9_"))
1875 (optional ":" (1+ (char "0-9"))))
1876 (and (1+ (char "-a-zA-Z0-9_."))
1877 (or ".com" ".net" ".org")
1881 (1+ (char "-a-zA-Z0-9_=!?#$\@~`%&*+|\\/:;.,{}[]()"))
1882 (char "-a-zA-Z0-9_=#$\@~`%&*+|\\/:;{}[]()")))))
1883 "Regexp matching URLs. Set to nil to disable URL features in rcirc.")
1885 (defun rcirc-browse-url (&optional arg
)
1886 "Prompt for URL to browse based on URLs in buffer."
1888 (let ((completions (mapcar (lambda (x) (cons x nil
)) rcirc-urls
))
1889 (initial-input (car rcirc-urls
))
1890 (history (cdr rcirc-urls
)))
1891 (browse-url (completing-read "rcirc browse-url: "
1892 completions nil nil initial-input
'history
)
1895 (defun rcirc-browse-url-at-point (point)
1896 "Send URL at point to `browse-url'."
1898 (let ((beg (previous-single-property-change (1+ point
) 'mouse-face
))
1899 (end (next-single-property-change point
'mouse-face
)))
1900 (browse-url (buffer-substring-no-properties beg end
))))
1902 (defun rcirc-browse-url-at-mouse (event)
1903 "Send URL at mouse click to `browse-url'."
1905 (let ((position (event-end event
)))
1906 (with-current-buffer (window-buffer (posn-window position
))
1907 (rcirc-browse-url-at-point (posn-point position
)))))
1910 (defvar rcirc-markup-text-functions
1911 '(rcirc-markup-body-text
1912 rcirc-markup-attributes
1913 rcirc-markup-my-nick
1915 rcirc-markup-keywords
1916 rcirc-markup-bright-nicks
)
1917 "List of functions used to manipulate text before it is printed.
1919 Each function takes three arguments, PROCESS, SENDER, RESPONSE
1920 and CHANNEL-BUFFER. The current buffer is temporary buffer that
1921 contains the text to manipulate. Each function works on the text
1924 (defun rcirc-markup-text (process sender response text
)
1925 "Return TEXT with properties added based on various patterns."
1926 (let ((channel-buffer (current-buffer)))
1929 (goto-char (point-min))
1930 (dolist (fn rcirc-markup-text-functions
)
1932 (funcall fn process sender response channel-buffer
)))
1933 (buffer-substring (point-min) (point-max)))))
1935 (defun rcirc-markup-body-text (process sender response channel-buffer
)
1936 ;; We add the text property `rcirc-text' to identify this as the
1938 (add-text-properties (point-min) (point-max)
1939 (list 'rcirc-text
(buffer-substring-no-properties
1940 (point-min) (point-max)))))
1942 (defun rcirc-markup-attributes (process sender response channel-buffer
)
1943 (while (re-search-forward "\\([\C-b\C-_\C-v]\\).*?\\(\\1\\|\C-o\\)" nil t
)
1944 (rcirc-add-face (match-beginning 0) (match-end 0)
1945 (case (char-after (match-beginning 1))
1948 (?\C-_
'underline
)))
1949 ;; keep the ^O since it could terminate other attributes
1950 (when (not (eq ?\C-o
(char-before (match-end 2))))
1951 (delete-region (match-beginning 2) (match-end 2)))
1952 (delete-region (match-beginning 1) (match-end 1))
1953 (goto-char (1+ (match-beginning 1))))
1954 ;; remove the ^O characters now
1955 (while (re-search-forward "\C-o+" nil t
)
1956 (delete-region (match-beginning 0) (match-end 0))))
1958 (defun rcirc-markup-my-nick (process sender response channel-buffer
)
1959 (with-syntax-table rcirc-nick-syntax-table
1960 (while (re-search-forward (concat "\\b"
1961 (regexp-quote (rcirc-nick process
))
1964 (rcirc-add-face (match-beginning 0) (match-end 0)
1965 'rcirc-nick-in-message
)
1966 (when (string= response
"PRIVMSG")
1967 (rcirc-add-face (point-min) (point-max) 'rcirc-nick-in-message-full-line
)
1968 (rcirc-record-activity channel-buffer
'nick
)))))
1970 (defun rcirc-markup-urls (process sender response channel-buffer
)
1971 (while (re-search-forward rcirc-url-regexp nil t
)
1972 (let ((start (match-beginning 0))
1973 (end (match-end 0)))
1974 (rcirc-add-face start end
'rcirc-url
)
1975 (add-text-properties start end
(list 'mouse-face
'highlight
1976 'keymap rcirc-browse-url-map
))
1978 (let ((url (buffer-substring-no-properties start end
)))
1979 (with-current-buffer channel-buffer
1980 (push url rcirc-urls
))))))
1982 (defun rcirc-markup-keywords (process sender response channel-buffer
)
1983 (let* ((target (with-current-buffer channel-buffer
(or rcirc-target
"")))
1984 (keywords (delq nil
(mapcar (lambda (keyword)
1985 (when (not (string-match keyword target
))
1989 (while (re-search-forward (regexp-opt keywords
'words
) nil t
)
1990 (rcirc-add-face (match-beginning 0) (match-end 0) 'rcirc-keyword
)
1991 (when (and (string= response
"PRIVMSG")
1992 (not (string= sender
(rcirc-nick process
))))
1993 (rcirc-record-activity channel-buffer
'keyword
))))))
1995 (defun rcirc-markup-bright-nicks (process sender response channel-buffer
)
1996 (when (and rcirc-bright-nicks
1997 (string= response
"NAMES"))
1998 (with-syntax-table rcirc-nick-syntax-table
1999 (while (re-search-forward (regexp-opt rcirc-bright-nicks
'words
) nil t
)
2000 (rcirc-add-face (match-beginning 0) (match-end 0)
2001 'rcirc-bright-nick
)))))
2004 ;; these are called with the server PROCESS, the SENDER, which is a
2005 ;; server or a user, depending on the command, the ARGS, which is a
2006 ;; list of strings, and the TEXT, which is the original server text,
2008 (defun rcirc-handler-001 (process sender args text
)
2009 (rcirc-handler-generic process
"001" sender args text
)
2010 ;; set the real server name
2011 (with-rcirc-process-buffer process
2012 (setq rcirc-server sender
)
2013 (setq rcirc-nick
(car args
))
2014 (rcirc-update-prompt)
2015 (when rcirc-auto-authenticate-flag
(rcirc-authenticate))
2016 (rcirc-join-channels process rcirc-startup-channels
)))
2018 (defun rcirc-handler-PRIVMSG (process sender args text
)
2019 (let ((target (if (rcirc-channel-p (car args
))
2022 (message (or (cadr args
) "")))
2023 (if (string-match "^\C-a\\(.*\\)\C-a$" message
)
2024 (rcirc-handler-CTCP process target sender
(match-string 1 message
))
2025 (rcirc-print process sender
"PRIVMSG" target message t
))
2026 ;; update nick timestamp
2027 (if (member target
(rcirc-nick-channels process sender
))
2028 (rcirc-put-nick-channel process sender target
))))
2030 (defun rcirc-handler-NOTICE (process sender args text
)
2031 (let ((target (car args
))
2032 (message (cadr args
)))
2033 (if (string-match "^\C-a\\(.*\\)\C-a$" message
)
2034 (rcirc-handler-CTCP-response process target sender
2035 (match-string 1 message
))
2036 (rcirc-print process sender
"NOTICE"
2037 (cond ((rcirc-channel-p target
)
2039 ;;; -ChanServ- [#gnu] Welcome...
2040 ((string-match "\\[\\(#[^\] ]+\\)\\]" message
)
2041 (match-string 1 message
))
2043 (if (string= sender
(rcirc-server-name process
))
2048 (defun rcirc-handler-WALLOPS (process sender args text
)
2049 (rcirc-print process sender
"WALLOPS" sender
(car args
) t
))
2051 (defun rcirc-handler-JOIN (process sender args text
)
2052 (let ((channel (car args
)))
2053 (rcirc-get-buffer-create process channel
)
2054 (rcirc-print process sender
"JOIN" channel
"")
2056 ;; print in private chat buffer if it exists
2057 (when (rcirc-get-buffer (rcirc-buffer-process) sender
)
2058 (rcirc-print process sender
"JOIN" sender channel
))
2060 (rcirc-put-nick-channel process sender channel
)))
2062 ;; PART and KICK are handled the same way
2063 (defun rcirc-handler-PART-or-KICK (process response channel sender nick args
)
2064 (rcirc-ignore-update-automatic nick
)
2065 (if (not (string= nick
(rcirc-nick process
)))
2066 ;; this is someone else leaving
2067 (rcirc-remove-nick-channel process nick channel
)
2068 ;; this is us leaving
2070 (rcirc-remove-nick-channel process n channel
))
2071 (rcirc-channel-nicks process channel
))
2073 ;; if the buffer is still around, make it inactive
2074 (let ((buffer (rcirc-get-buffer process channel
)))
2076 (with-current-buffer buffer
2077 (setq rcirc-target nil
))))))
2079 (defun rcirc-handler-PART (process sender args text
)
2080 (let* ((channel (car args
))
2081 (reason (cadr args
))
2082 (message (concat channel
" " reason
)))
2083 (rcirc-print process sender
"PART" channel message
)
2084 ;; print in private chat buffer if it exists
2085 (when (rcirc-get-buffer (rcirc-buffer-process) sender
)
2086 (rcirc-print process sender
"PART" sender message
))
2088 (rcirc-handler-PART-or-KICK process
"PART" channel sender sender reason
)))
2090 (defun rcirc-handler-KICK (process sender args text
)
2091 (let* ((channel (car args
))
2093 (reason (caddr args
))
2094 (message (concat nick
" " channel
" " reason
)))
2095 (rcirc-print process sender
"KICK" channel message t
)
2096 ;; print in private chat buffer if it exists
2097 (when (rcirc-get-buffer (rcirc-buffer-process) nick
)
2098 (rcirc-print process sender
"KICK" nick message
))
2100 (rcirc-handler-PART-or-KICK process
"KICK" channel sender nick reason
)))
2102 (defun rcirc-handler-QUIT (process sender args text
)
2103 (rcirc-ignore-update-automatic sender
)
2104 (mapc (lambda (channel)
2105 (rcirc-print process sender
"QUIT" channel
(apply 'concat args
)))
2106 (rcirc-nick-channels process sender
))
2108 ;; print in private chat buffer if it exists
2109 (when (rcirc-get-buffer (rcirc-buffer-process) sender
)
2110 (rcirc-print process sender
"QUIT" sender
(apply 'concat args
)))
2112 (rcirc-nick-remove process sender
))
2114 (defun rcirc-handler-NICK (process sender args text
)
2115 (let* ((old-nick sender
)
2116 (new-nick (car args
))
2117 (channels (rcirc-nick-channels process old-nick
)))
2118 ;; update list of ignored nicks
2119 (rcirc-ignore-update-automatic old-nick
)
2120 (when (member old-nick rcirc-ignore-list
)
2121 (add-to-list 'rcirc-ignore-list new-nick
)
2122 (add-to-list 'rcirc-ignore-list-automatic new-nick
))
2123 ;; print message to nick's channels
2124 (dolist (target channels
)
2125 (rcirc-print process sender
"NICK" target new-nick
))
2126 ;; update private chat buffer, if it exists
2127 (let ((chat-buffer (rcirc-get-buffer process old-nick
)))
2129 (with-current-buffer chat-buffer
2130 (rcirc-print process sender
"NICK" old-nick new-nick
)
2131 (setq rcirc-target new-nick
)
2132 (rename-buffer (rcirc-generate-new-buffer-name process new-nick
)))))
2133 ;; remove old nick and add new one
2134 (with-rcirc-process-buffer process
2135 (let ((v (gethash old-nick rcirc-nick-table
)))
2136 (remhash old-nick rcirc-nick-table
)
2137 (puthash new-nick v rcirc-nick-table
))
2138 ;; if this is our nick...
2139 (when (string= old-nick rcirc-nick
)
2140 (setq rcirc-nick new-nick
)
2141 (rcirc-update-prompt t
)
2143 (when rcirc-auto-authenticate-flag
(rcirc-authenticate))))))
2145 (defun rcirc-handler-PING (process sender args text
)
2146 (rcirc-send-string process
(concat "PONG " (car args
))))
2148 (defun rcirc-handler-PONG (process sender args text
)
2152 (defun rcirc-handler-TOPIC (process sender args text
)
2153 (let ((topic (cadr args
)))
2154 (rcirc-print process sender
"TOPIC" (car args
) topic
)
2155 (with-current-buffer (rcirc-get-buffer process
(car args
))
2156 (setq rcirc-topic topic
))))
2158 (defvar rcirc-nick-away-alist nil
)
2159 (defun rcirc-handler-301 (process sender args text
)
2161 (let* ((nick (cadr args
))
2162 (rec (assoc-string nick rcirc-nick-away-alist
))
2163 (away-message (caddr args
)))
2165 (not (string= (cdr rec
) away-message
)))
2166 ;; away message has changed
2167 (rcirc-handler-generic process
"AWAY" nick
(cdr args
) text
)
2169 (setcdr rec away-message
)
2170 (setq rcirc-nick-away-alist
(cons (cons nick away-message
)
2171 rcirc-nick-away-alist
))))))
2173 (defun rcirc-handler-332 (process sender args text
)
2175 (let ((buffer (or (rcirc-get-buffer process
(cadr args
))
2176 (rcirc-get-temp-buffer-create process
(cadr args
)))))
2177 (with-current-buffer buffer
2178 (setq rcirc-topic
(caddr args
)))))
2180 (defun rcirc-handler-333 (process sender args text
)
2181 "Not in rfc1459.txt"
2182 (let ((buffer (or (rcirc-get-buffer process
(cadr args
))
2183 (rcirc-get-temp-buffer-create process
(cadr args
)))))
2184 (with-current-buffer buffer
2185 (let ((setter (caddr args
))
2186 (time (current-time-string
2188 (string-to-number (cadddr args
))))))
2189 (rcirc-print process sender
"TOPIC" (cadr args
)
2190 (format "%s (%s on %s)" rcirc-topic setter time
))))))
2192 (defun rcirc-handler-477 (process sender args text
)
2194 (rcirc-print process sender
"477" (cadr args
) (caddr args
)))
2196 (defun rcirc-handler-MODE (process sender args text
)
2197 (let ((target (car args
))
2198 (msg (mapconcat 'identity
(cdr args
) " ")))
2199 (rcirc-print process sender
"MODE"
2200 (if (string= target
(rcirc-nick process
))
2205 ;; print in private chat buffers if they exist
2206 (mapc (lambda (nick)
2207 (when (rcirc-get-buffer process nick
)
2208 (rcirc-print process sender
"MODE" nick msg
)))
2211 (defun rcirc-get-temp-buffer-create (process channel
)
2212 "Return a buffer based on PROCESS and CHANNEL."
2213 (let ((tmpnam (concat " " (downcase channel
) "TMP" (process-name process
))))
2214 (get-buffer-create tmpnam
)))
2216 (defun rcirc-handler-353 (process sender args text
)
2218 (let ((channel (caddr args
)))
2219 (mapc (lambda (nick)
2220 (rcirc-put-nick-channel process nick channel
))
2221 (split-string (cadddr args
) " " t
))
2222 (with-current-buffer (rcirc-get-temp-buffer-create process channel
)
2223 (goto-char (point-max))
2224 (insert (car (last args
)) " "))))
2226 (defun rcirc-handler-366 (process sender args text
)
2228 (let* ((channel (cadr args
))
2229 (buffer (rcirc-get-temp-buffer-create process channel
)))
2230 (with-current-buffer buffer
2231 (rcirc-print process sender
"NAMES" channel
2232 (buffer-substring (point-min) (point-max))))
2233 (kill-buffer buffer
)))
2235 (defun rcirc-handler-433 (process sender args text
)
2237 (rcirc-handler-generic process
"433" sender args text
)
2238 (let* ((new-nick (concat (cadr args
) "`")))
2239 (with-rcirc-process-buffer process
2240 (rcirc-cmd-nick new-nick nil process
))))
2242 (defun rcirc-authenticate ()
2243 "Send authentication to process associated with current buffer.
2244 Passwords are stored in `rcirc-authinfo' (which see)."
2246 (with-rcirc-server-buffer
2247 (dolist (i rcirc-authinfo
)
2248 (let ((process (rcirc-buffer-process))
2253 (when (and (string-match server rcirc-server
)
2254 (string-match nick rcirc-nick
))
2255 (cond ((equal method
'nickserv
)
2259 "PRIVMSG nickserv :identify "
2261 ((equal method
'chanserv
)
2265 "PRIVMSG chanserv :identify "
2266 (cadr args
) " " (car args
))))
2267 ((equal method
'bitlbee
)
2270 (concat "PRIVMSG &bitlbee :identify " (car args
))))
2272 (message "No %S authentication method defined"
2275 (defun rcirc-handler-INVITE (process sender args text
)
2276 (rcirc-print process sender
"INVITE" nil
(mapconcat 'identity args
" ") t
))
2278 (defun rcirc-handler-ERROR (process sender args text
)
2279 (rcirc-print process sender
"ERROR" nil
(mapconcat 'identity args
" ")))
2281 (defun rcirc-handler-CTCP (process target sender text
)
2282 (if (string-match "^\\([^ ]+\\) *\\(.*\\)$" text
)
2283 (let* ((request (upcase (match-string 1 text
)))
2284 (args (match-string 2 text
))
2285 (handler (intern-soft (concat "rcirc-handler-ctcp-" request
))))
2286 (if (not (fboundp handler
))
2287 (rcirc-print process sender
"ERROR" target
2288 (format "%s sent unsupported ctcp: %s" sender text
)
2290 (funcall handler process target sender args
)
2291 (if (not (string= request
"ACTION"))
2292 (rcirc-print process sender
"CTCP" target
2293 (format "%s" text
) t
))))))
2295 (defun rcirc-handler-ctcp-VERSION (process target sender args
)
2296 (rcirc-send-string process
2297 (concat "NOTICE " sender
2298 " :\C-aVERSION " rcirc-id-string
2301 (defun rcirc-handler-ctcp-ACTION (process target sender args
)
2302 (rcirc-print process sender
"ACTION" target args t
))
2304 (defun rcirc-handler-ctcp-TIME (process target sender args
)
2305 (rcirc-send-string process
2306 (concat "NOTICE " sender
2307 " :\C-aTIME " (current-time-string) "\C-a")))
2309 (defun rcirc-handler-CTCP-response (process target sender message
)
2310 (rcirc-print process sender
"CTCP" nil message t
))
2312 (defgroup rcirc-faces nil
2317 (defface rcirc-my-nick
; font-lock-function-name-face
2318 '((((class color
) (min-colors 88) (background light
)) (:foreground
"Blue1"))
2319 (((class color
) (min-colors 88) (background dark
)) (:foreground
"LightSkyBlue"))
2320 (((class color
) (min-colors 16) (background light
)) (:foreground
"Blue"))
2321 (((class color
) (min-colors 16) (background dark
)) (:foreground
"LightSkyBlue"))
2322 (((class color
) (min-colors 8)) (:foreground
"blue" :weight bold
))
2323 (t (:inverse-video t
:weight bold
)))
2324 "The face used to highlight my messages."
2325 :group
'rcirc-faces
)
2327 (defface rcirc-other-nick
; font-lock-variable-name-face
2328 '((((class grayscale
) (background light
))
2329 (:foreground
"Gray90" :weight bold
:slant italic
))
2330 (((class grayscale
) (background dark
))
2331 (:foreground
"DimGray" :weight bold
:slant italic
))
2332 (((class color
) (min-colors 88) (background light
)) (:foreground
"DarkGoldenrod"))
2333 (((class color
) (min-colors 88) (background dark
)) (:foreground
"LightGoldenrod"))
2334 (((class color
) (min-colors 16) (background light
)) (:foreground
"DarkGoldenrod"))
2335 (((class color
) (min-colors 16) (background dark
)) (:foreground
"LightGoldenrod"))
2336 (((class color
) (min-colors 8)) (:foreground
"yellow" :weight light
))
2337 (t (:weight bold
:slant italic
)))
2338 "The face used to highlight other messages."
2339 :group
'rcirc-faces
)
2341 (defface rcirc-bright-nick
2342 '((((class grayscale
) (background light
))
2343 (:foreground
"LightGray" :weight bold
:underline t
))
2344 (((class grayscale
) (background dark
))
2345 (:foreground
"Gray50" :weight bold
:underline t
))
2346 (((class color
) (min-colors 88) (background light
)) (:foreground
"CadetBlue"))
2347 (((class color
) (min-colors 88) (background dark
)) (:foreground
"Aquamarine"))
2348 (((class color
) (min-colors 16) (background light
)) (:foreground
"CadetBlue"))
2349 (((class color
) (min-colors 16) (background dark
)) (:foreground
"Aquamarine"))
2350 (((class color
) (min-colors 8)) (:foreground
"magenta"))
2351 (t (:weight bold
:underline t
)))
2352 "Face used for nicks matched by `rcirc-bright-nicks'."
2353 :group
'rcirc-faces
)
2355 (defface rcirc-dim-nick
2356 '((t :inherit default
))
2357 "Face used for nicks in `rcirc-dim-nicks'."
2358 :group
'rcirc-faces
)
2360 (defface rcirc-server
; font-lock-comment-face
2361 '((((class grayscale
) (background light
))
2362 (:foreground
"DimGray" :weight bold
:slant italic
))
2363 (((class grayscale
) (background dark
))
2364 (:foreground
"LightGray" :weight bold
:slant italic
))
2365 (((class color
) (min-colors 88) (background light
))
2366 (:foreground
"Firebrick"))
2367 (((class color
) (min-colors 88) (background dark
))
2368 (:foreground
"chocolate1"))
2369 (((class color
) (min-colors 16) (background light
))
2370 (:foreground
"red"))
2371 (((class color
) (min-colors 16) (background dark
))
2372 (:foreground
"red1"))
2373 (((class color
) (min-colors 8) (background light
))
2375 (((class color
) (min-colors 8) (background dark
))
2377 (t (:weight bold
:slant italic
)))
2378 "The face used to highlight server messages."
2379 :group
'rcirc-faces
)
2381 (defface rcirc-server-prefix
; font-lock-comment-delimiter-face
2382 '((default :inherit rcirc-server
)
2383 (((class grayscale
)))
2384 (((class color
) (min-colors 16)))
2385 (((class color
) (min-colors 8) (background light
))
2387 (((class color
) (min-colors 8) (background dark
))
2388 :foreground
"red1"))
2389 "The face used to highlight server prefixes."
2390 :group
'rcirc-faces
)
2392 (defface rcirc-timestamp
2393 '((t (:inherit default
)))
2394 "The face used to highlight timestamps."
2395 :group
'rcirc-faces
)
2397 (defface rcirc-nick-in-message
; font-lock-keyword-face
2398 '((((class grayscale
) (background light
)) (:foreground
"LightGray" :weight bold
))
2399 (((class grayscale
) (background dark
)) (:foreground
"DimGray" :weight bold
))
2400 (((class color
) (min-colors 88) (background light
)) (:foreground
"Purple"))
2401 (((class color
) (min-colors 88) (background dark
)) (:foreground
"Cyan1"))
2402 (((class color
) (min-colors 16) (background light
)) (:foreground
"Purple"))
2403 (((class color
) (min-colors 16) (background dark
)) (:foreground
"Cyan"))
2404 (((class color
) (min-colors 8)) (:foreground
"cyan" :weight bold
))
2406 "The face used to highlight instances of your nick within messages."
2407 :group
'rcirc-faces
)
2409 (defface rcirc-nick-in-message-full-line
2411 "The face used emphasize the entire message when your nick is mentioned."
2412 :group
'rcirc-faces
)
2414 (defface rcirc-prompt
; comint-highlight-prompt
2415 '((((min-colors 88) (background dark
)) (:foreground
"cyan1"))
2416 (((background dark
)) (:foreground
"cyan"))
2417 (t (:foreground
"dark blue")))
2418 "The face used to highlight prompts."
2419 :group
'rcirc-faces
)
2421 (defface rcirc-track-nick
2422 '((t (:inverse-video t
)))
2423 "The face used in the mode-line when your nick is mentioned."
2424 :group
'rcirc-faces
)
2426 (defface rcirc-track-keyword
2428 "The face used in the mode-line when keywords are mentioned."
2429 :group
'rcirc-faces
)
2433 "The face used to highlight urls."
2434 :group
'rcirc-faces
)
2436 (defface rcirc-keyword
2437 '((t (:inherit highlight
)))
2438 "The face used to highlight keywords."
2439 :group
'rcirc-faces
)
2442 ;; When using M-x flyspell-mode, only check words after the prompt
2443 (put 'rcirc-mode
'flyspell-mode-predicate
'rcirc-looking-at-input
)
2444 (defun rcirc-looking-at-input ()
2445 "Returns true if point is past the input marker."
2446 (>= (point) rcirc-prompt-end-marker
))
2451 ;; arch-tag: b471b7e8-6b5a-4399-b2c6-a3c78dfc8ffb
2452 ;;; rcirc.el ends here