1 ;;; ecomplete.el --- electric completion of addresses and the like
3 ;; Copyright (C) 2006-2012 Free Software Foundation, Inc.
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
31 (when (featurep 'xemacs
)
32 ;; The `kbd' macro requires that the `read-kbd-macro' macro is available.
35 (defgroup ecomplete nil
36 "Electric completion of email addresses and the like."
39 (defcustom ecomplete-database-file
"~/.ecompleterc"
40 "*The name of the file to store the ecomplete data."
44 (defcustom ecomplete-database-file-coding-system
'iso-2022-7bit
45 "Coding system used for writing the ecomplete database file."
46 :type
'(symbol :tag
"Coding system")
49 ;;; Internal variables.
51 (defvar ecomplete-database nil
)
54 (defun ecomplete-setup ()
55 (when (file-exists-p ecomplete-database-file
)
57 (let ((coding-system-for-read ecomplete-database-file-coding-system
))
58 (insert-file-contents ecomplete-database-file
)
59 (setq ecomplete-database
(read (current-buffer)))))))
61 (defun ecomplete-add-item (type key text
)
62 (let ((elems (assq type ecomplete-database
))
63 (now (string-to-number
64 (format "%.0f" (if (featurep 'emacs
)
70 (push (setq elems
(list type
)) ecomplete-database
))
71 (if (setq entry
(assoc key
(cdr elems
)))
72 (setcdr entry
(list (1+ (cadr entry
)) now text
))
73 (nconc elems
(list (list key
1 now text
))))))
75 (defun ecomplete-get-item (type key
)
76 (assoc key
(cdr (assq type ecomplete-database
))))
78 (defun ecomplete-save ()
80 (let ((coding-system-for-write ecomplete-database-file-coding-system
))
82 (loop for
(type . elems
) in ecomplete-database
84 (insert (format "(%s\n" type
))
86 (prin1 entry
(current-buffer))
90 (write-region (point-min) (point-max)
91 ecomplete-database-file nil
'silent
))))
93 (defun ecomplete-get-matches (type match
)
94 (let* ((elems (cdr (assq type ecomplete-database
)))
95 (match (regexp-quote match
))
98 (loop for
(key count time text
) in elems
99 when
(string-match match text
)
100 collect
(list count time text
))
102 (> (car l1
) (car l2
))))))
103 (when (> (length candidates
) 10)
104 (setcdr (nthcdr 10 candidates
) nil
))
105 (unless (zerop (length candidates
))
107 (dolist (candidate candidates
)
108 (insert (caddr candidate
) "\n"))
109 (goto-char (point-min))
110 (put-text-property (point) (1+ (point)) 'ecomplete t
)
111 (while (re-search-forward match nil t
)
112 (put-text-property (match-beginning 0) (match-end 0)
116 (defun ecomplete-display-matches (type word
&optional choose
)
117 (let* ((matches (ecomplete-get-matches type word
))
119 (max-lines (when matches
(- (length (split-string matches
"\n")) 2)))
120 (message-log-max nil
)
124 (message "No ecomplete matches")
128 (message "%s" matches
)
130 (setq highlight
(ecomplete-highlight-match-line matches line
))
131 (let ((local-map (make-sparse-keymap))
133 (define-key local-map
(kbd "RET")
134 (lambda () (setq selected
(nth line
(split-string matches
"\n")))))
135 (define-key local-map
(kbd "M-n")
136 (lambda () (setq line
(min (1+ line
) max-lines
))))
137 (define-key local-map
(kbd "M-p")
138 (lambda () (setq line
(max (1- line
) 0))))
139 (let ((overriding-local-map local-map
))
140 (while (and (null selected
)
141 (setq command
(read-key-sequence highlight
))
142 (lookup-key local-map command
))
143 (apply (key-binding command
) nil
)
144 (setq highlight
(ecomplete-highlight-match-line matches line
))))
150 (defun ecomplete-highlight-match-line (matches line
)
153 (goto-char (point-min))
156 (narrow-to-region (point) (point-at-eol))
158 ;; Put the 'region face on any characters on this line that
159 ;; aren't already highlighted.
160 (unless (get-text-property (point) 'face
)
161 (put-text-property (point) (1+ (point)) 'face
'highlight
))
167 ;;; ecomplete.el ends here