1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
;;; multi-prompt.el --- completing read of multiple strings.
;; Copyright (C) 1996, 1997 Per Abrahamsen.
;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
;; Keywords: extensions
;; Version: 0.2
;; Bogus-Bureaucratic-Cruft: How 'bout ESR and the LCD people agreed
;; on a common format?
;; LCD Archive Entry:
;; multi-prompt|Per Abrahamsen|abraham@dina.kvl.dk|
;; completing read of multiple strings|
;; 1996-08-31|0.1|~/functions/multi-prompt.el.Z|
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program; if not, write to the Free Software
;; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
;;; Commentary:
;; This package is written for use in emacs lisp programs, where the
;; user is prompted for a string of the form:
;;
;; FOO,BAR,BAZ
;;
;; where FOO, BAR, and BAZ are elements of some table. The function
;; `multi-prompt' is a replacement `completing-read' that will allow
;; the user to enter a string like the above, yet get completion on
;; both FOO, BAR, and BAZ.
;;; Change Log:
;;
;; Sat Feb 15 17:58:31 MET 1997
;; * Version 0.2 released.
;; Renamed predicate to `mp-predicate'.
;; Sat Aug 31 18:32:20 MET DST 1996
;; * Version 0.1 released.
;; Fixed `predicate' bug.
;; Added provide.
;; Added `multi-prompt-found' variable.
;; Sat Aug 31 16:29:14 MET DST 1996
;; * Created.
;;; Code:
(provide 'multi-prompt)
(defvar multi-prompt-found nil
"List of entries currently added during a `multi-prompt'.")
(defun multi-prompt (separator
unique prompt table
&optional mp-predicate require-match initial history)
"Completing prompt for a list of strings.
The first argument SEPARATOR should be the string (of length 1) to
separate the elements in the list. The second argument UNIQUE should
be non-nil, if each element must be unique. The remaining elements
are the arguments to `completing-read'. See that."
(let ((old-map (if require-match
minibuffer-local-must-match-map
minibuffer-local-completion-map))
(new-map (make-sparse-keymap)))
(if (fboundp 'set-keymap-parent)
;; `set-keymap-parent' was introduced in Emacs 19.32.
(set-keymap-parent new-map old-map)
(setq new-map (copy-keymap old-map)))
(define-key new-map separator (if require-match
'multi-prompt-next-must-match
'multi-prompt-next))
(define-key new-map "\C-?" 'multi-prompt-delete)
(let* ((minibuffer-local-completion-map new-map)
(minibuffer-local-must-match-map new-map)
(multi-prompt-found nil)
(done nil)
(filter (cond (unique
(lambda (x)
(and (not (member (car x) multi-prompt-found))
(or (null mp-predicate)
(funcall mp-predicate x)))))
(mp-predicate)))
(answer (catch 'multi-prompt-exit
(while t
(let ((extra (catch 'multi-prompt-next
(throw 'multi-prompt-exit
(completing-read prompt
table
filter
require-match
initial
history)))))
(cond ((eq extra 'back)
(when multi-prompt-found
(setq prompt (substring
prompt 0
(- 0 (length separator)
(length
(car multi-prompt-found))))
initial (car multi-prompt-found))
(setq multi-prompt-found
(cdr multi-prompt-found))))
(t
(setq prompt (concat prompt extra separator)
initial nil)
(setq multi-prompt-found
(cons extra multi-prompt-found)))))))))
(if answer
(nreverse (cons answer multi-prompt-found))
multi-prompt-found))))
(defun multi-prompt-delete ()
(interactive)
(if (bobp)
(throw 'multi-prompt-next 'back)
(call-interactively 'backward-delete-char)))
(defun multi-prompt-next ()
(interactive)
(throw 'multi-prompt-next
(buffer-substring-no-properties (point-min) (point-max))))
(defun multi-prompt-next-must-match ()
(interactive)
(if (call-interactively 'minibuffer-complete)
(throw 'multi-prompt-next
(buffer-substring-no-properties (point-min) (point-max)))))
;;; multi-prompt.el ends here
|