1 ;;; tempo.el --- Flexible template insertion
3 ;; Copyright (C) 1994-1995, 2001-2012 Free Software Foundation, Inc.
5 ;; Author: David K}gedal <davidk@lysator.liu.se>
6 ;; Created: 16 Feb 1994
7 ;; K}gedal's last version number: 1.2.4
8 ;; Keywords: extensions, languages, tools
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
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.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;; This file provides a simple way to define powerful templates, or
28 ;; macros, if you wish. It is mainly intended for, but not limited to,
29 ;; other programmers to be used for creating shortcuts for editing
30 ;; certain kind of documents. It was originally written to be used by
31 ;; a HTML editing mode written by Nelson Minar <nelson@santafe.edu>,
32 ;; and his html-helper-mode.el is probably the best example of how to
35 ;; A template is defined as a list of items to be inserted in the
36 ;; current buffer at point. Some of the items can be simple strings,
37 ;; while other can control formatting or define special points of
38 ;; interest in the inserted text.
40 ;; If a template defines a "point of interest" that point is inserted
41 ;; in a buffer-local list of "points of interest" that the user can
42 ;; jump between with the commands `tempo-backward-mark' and
43 ;; `tempo-forward-mark'. If the template definer provides a prompt for
44 ;; the point, and the variable `tempo-interactive' is non-nil, the
45 ;; user will be prompted for a string to be inserted in the buffer,
46 ;; using the minibuffer.
48 ;; The template can also define one point to be replaced with the
49 ;; current region if the template command is called with a prefix (or
50 ;; a non-nil argument).
52 ;; More flexible templates can be created by including lisp symbols,
53 ;; which will be evaluated as variables, or lists, which will be
54 ;; evaluated as lisp expressions.
56 ;; See the documentation for tempo-define-template for the different
57 ;; items that can be used to define a tempo template.
59 ;; One of the more powerful features of tempo templates are automatic
60 ;; completion. With every template can be assigned a special tag that
61 ;; should be recognized by `tempo-complete-tag' and expanded to the
62 ;; complete template. By default the tags are added to a global list
63 ;; of template tags, and are matched against the last word before
64 ;; point. But if you assign your tags to a specific list, you can also
65 ;; specify another method for matching text in the buffer against the
66 ;; tags. In the HTML mode, for instance, the tags are matched against
67 ;; the text between the last `<' and point.
69 ;; When defining a template named `foo', a symbol named
70 ;; `tempo-template-foo' will be created whose value as a variable will
71 ;; be the template definition, and its function value will be an
72 ;; interactive function that inserts the template at the point.
74 ;; The latest tempo.el distribution can be fetched from
75 ;; ftp.lysator.liu.se in the directory /pub/emacs
77 ;; There is also a WWW page at
78 ;; http://www.lysator.liu.se/~davidk/elisp/ which has some information
82 ;; If the 'o is the first element in a template, strange things can
83 ;; happen when the template is inserted at the beginning of a
84 ;; line. This is due to strange behavior in open-line. But it should
87 ;; The 'o tag is also a problem when including the region. This will
90 ;; Clicking mouse-2 in the completion buffer gives strange results.
92 ;; There is a bug in some emacs versions that prevents completion from
93 ;; working. If it doesn't work for you, send me a note indicating your
94 ;; emacs version and your problems.
98 ;; These people have given me important feedback and new ideas for
101 ;; Nelson Minar <nelson@santafe.edu>
102 ;; Richard Stallman <rms@gnu.org>
103 ;; Lars Lindberg <Lars.Lindberg@sypro.cap.se>
104 ;; Glen Whitney <Glen.Whitney@math.lsa.umich.edu>
111 "Flexible template insertion."
115 (defcustom tempo-interactive nil
116 "Prompt user for strings in templates.
117 If this variable is non-nil, `tempo-insert' prompts the
118 user for text to insert in the templates."
122 (defcustom tempo-insert-region nil
123 "Automatically insert current region when there is a `r' in the template
124 If this variable is nil, `r' elements will be treated just like `p'
125 elements, unless the template function is given a prefix (or a non-nil
126 argument). If this variable is non-nil, the behavior is reversed.
128 In Transient Mark mode, this option is unused."
132 (defcustom tempo-show-completion-buffer t
133 "If non-nil, show a buffer with possible completions, when only
134 a partial completion can be found."
138 (defcustom tempo-leave-completion-buffer nil
139 "If nil, a completion buffer generated by \\[tempo-complete-tag]
140 disappears at the next keypress; otherwise, it remains forever."
144 ;;; Internal variables
146 (defvar tempo-insert-string-functions nil
147 "List of functions to run when inserting a string.
148 Each function is called with a single arg, STRING and should return
149 another string. This could be used for making all strings upcase by
150 setting it to '(upcase), for example.")
152 (defvar tempo-tags nil
153 "An association list with tags and corresponding templates.")
155 (defvar tempo-local-tags
'((tempo-tags . nil
))
156 "A list of locally installed tag completion lists.
157 It is a association list where the car of every element is a symbol
158 whose variable value is a template list. The cdr part, if non-nil,
159 is a function or a regexp that defines the string to match. See the
160 documentation for the function `tempo-complete-tag' for more info.
162 `tempo-tags' is always in the last position in this list.")
164 (defvar tempo-collection nil
165 "A collection of all the tags defined for the current buffer.")
167 (defvar tempo-dirty-collection t
168 "Indicates if the tag collection needs to be rebuilt.")
170 (defvar tempo-marks nil
171 "A list of marks to jump to with `\\[tempo-forward-mark]' and `\\[tempo-backward-mark]'.")
173 (defvar tempo-match-finder
"\\b\\([[:word:]]+\\)\\="
174 "The regexp or function used to find the string to match against tags.
176 If `tempo-match-finder' is a string, it should contain a regular
177 expression with at least one \\( \\) pair. When searching for tags,
178 `tempo-complete-tag' calls `re-search-backward' with this string, and
179 the string between the first \\( and \\) is used for matching against
180 each string in the tag list. If one is found, the whole text between
181 the first \\( and the point is replaced with the inserted template.
183 You will probably want to include \\=\\= at the end of the regexp to
184 make sure that the string is matched only against text adjacent to the
187 If `tempo-match-finder' is a symbol, it should be a function that
188 returns a pair of the form (STRING . POS), where STRING is the string
189 used for matching and POS is the buffer position after which text
190 should be replaced with a template.")
192 (defvar tempo-user-elements nil
193 "Element handlers for user-defined elements.
194 A list of symbols which are bound to functions that take one argument.
195 This function should return something to be sent to `tempo-insert' if
196 it recognizes the argument, and nil otherwise.")
198 (defvar tempo-named-insertions nil
199 "Temporary storage for named insertions.")
201 (defvar tempo-region-start
(make-marker)
202 "Region start when inserting around the region.")
204 (defvar tempo-region-stop
(make-marker)
205 "Region stop when inserting around the region.")
207 ;; Make some variables local to every buffer
209 (make-variable-buffer-local 'tempo-marks
)
210 (make-variable-buffer-local 'tempo-local-tags
)
211 (make-variable-buffer-local 'tempo-match-finder
)
212 (make-variable-buffer-local 'tempo-collection
)
213 (make-variable-buffer-local 'tempo-dirty-collection
)
218 ;; tempo-define-template
220 (defun tempo-define-template (name elements
&optional tag documentation taglist
)
222 This function creates a template variable `tempo-template-NAME' and an
223 interactive function `tempo-template-NAME' that inserts the template
224 at the point. The created function is returned.
226 NAME is a string that contains the name of the template, ELEMENTS is a
227 list of elements in the template, TAG is the tag used for completion,
228 DOCUMENTATION is the documentation string for the insertion command
229 created, and TAGLIST (a symbol) is the tag list that TAG (if provided)
230 should be added to. If TAGLIST is nil and TAG is non-nil, TAG is
231 added to `tempo-tags'.
233 The elements in ELEMENTS can be of several types:
235 - A string: It is sent to the hooks in `tempo-insert-string-functions',
236 and the result is inserted.
237 - The symbol `p': This position is saved in `tempo-marks'.
238 - The symbol `r': If `tempo-insert' is called with ON-REGION non-nil
239 the current region is placed here. Otherwise it works like `p'.
240 - (p PROMPT <NAME> <NOINSERT>): If `tempo-interactive' is non-nil, the
241 user is prompted in the minibuffer with PROMPT for a string to be
242 inserted. If the optional parameter NAME is non-nil, the text is
243 saved for later insertion with the `s' tag. If there already is
244 something saved under NAME that value is used instead and no
245 prompting is made. If NOINSERT is provided and non-nil, nothing is
246 inserted, but text is still saved when a NAME is provided. For
247 clarity, the symbol `noinsert' should be used as argument.
248 - (P PROMPT <NAME> <NOINSERT>): Works just like the previous tag, but
249 forces `tempo-interactive' to be true.
250 - (r PROMPT <NAME> <NOINSERT>): Like the previous tag, but if
251 `tempo-interactive' is nil and `tempo-insert' is called with
252 ON-REGION non-nil, the current region is placed here. This usually
253 happens when you call the template function with a prefix argument.
254 - (s NAME): Inserts text previously read with the (p ..) construct.
255 Finds the insertion saved under NAME and inserts it. Acts like `p'
256 if tempo-interactive is nil.
257 - `&': If there is only whitespace between the line start and point,
258 nothing happens. Otherwise a newline is inserted.
259 - `%': If there is only whitespace between point and end of line,
260 nothing happens. Otherwise a newline is inserted.
261 - `n': Inserts a newline.
262 - `>': The line is indented using `indent-according-to-mode'. Note
263 that you often should place this item after the text you want on
265 - `r>': Like `r', but it also indents the region.
266 - (r> PROMPT <NAME> <NOINSERT>): Like (r ...), but is also indents
268 - `n>': Inserts a newline and indents line.
269 - `o': Like `%' but leaves the point before the newline.
270 - nil: It is ignored.
271 - Anything else: It is evaluated and the result is treated as an
272 element to be inserted. One additional tag is useful for these
273 cases. If an expression returns a list '(l foo bar), the elements
274 after `l' will be inserted according to the usual rules. This makes
275 it possible to return several elements from one expression."
276 (let* ((template-name (intern (concat "tempo-template-"
278 (command-name template-name
))
279 (set template-name elements
)
280 (fset command-name
(list 'lambda
(list '&optional
'arg
)
282 (concat "Insert a " name
"."))
283 (list 'interactive
"*P")
284 (list 'tempo-insert-template
(list 'quote
286 (list 'if
'tempo-insert-region
287 (list 'not
'arg
) 'arg
))))
289 (tempo-add-tag tag template-name taglist
))
293 ;;; tempo-insert-template
295 (defun tempo-insert-template (template on-region
)
297 TEMPLATE is the template to be inserted. If ON-REGION is non-nil the
298 `r' elements are replaced with the current region. In Transient Mark
299 mode, ON-REGION is ignored and assumed true if the region is active."
302 (if (or (and (boundp 'transient-mark-mode
) ; For Emacs
305 (if (featurep 'xemacs
)
306 (and zmacs-regions
(mark))))
309 (set-marker tempo-region-start
(min (mark) (point)))
310 (set-marker tempo-region-stop
(max (mark) (point))))
312 (goto-char tempo-region-start
))
314 (tempo-insert-mark (point-marker))
315 (mapc (function (lambda (elt)
316 (tempo-insert elt on-region
)))
317 (symbol-value template
))
318 (tempo-insert-mark (point-marker)))
319 (tempo-forward-mark))
320 (tempo-forget-insertions)
321 ;; Should I check for zmacs here too???
322 (and (boundp 'transient-mark-mode
)
329 (defun tempo-insert (element on-region
)
330 "Insert a template element.
331 Insert one element from a template. If ON-REGION is non-nil the `r'
332 elements are replaced with the current region.
334 See documentation for `tempo-define-template' for the kind of elements
336 (cond ((stringp element
) (tempo-process-and-insert-string element
))
337 ((and (consp element
)
338 (eq (car element
) 'p
)) (tempo-insert-prompt-compat
340 ((and (consp element
)
341 (eq (car element
) 'P
)) (let ((tempo-interactive t
))
342 (tempo-insert-prompt-compat
344 ;;; ((and (consp element)
345 ;;; (eq (car element) 'v)) (tempo-save-named
348 ;;; (nth 2 element)))
349 ((and (consp element
)
350 (eq (car element
) 'r
)) (if on-region
351 (goto-char tempo-region-stop
)
352 (tempo-insert-prompt-compat
354 ((and (consp element
)
355 (eq (car element
) 'r
>)) (if on-region
357 (goto-char tempo-region-stop
)
358 (indent-region (mark) (point) nil
))
359 (tempo-insert-prompt-compat
361 ((and (consp element
)
362 (eq (car element
) 's
)) (tempo-insert-named (car (cdr element
))))
363 ((and (consp element
)
364 (eq (car element
) 'l
)) (mapcar (function
366 (tempo-insert elt on-region
)))
368 ((eq element
'p
) (tempo-insert-mark (point-marker)))
369 ((eq element
'r
) (if on-region
370 (goto-char tempo-region-stop
)
371 (tempo-insert-mark (point-marker))))
372 ((eq element
'r
>) (if on-region
374 (goto-char tempo-region-stop
)
375 (indent-region (mark) (point) nil
))
376 (tempo-insert-mark (point-marker))))
377 ((eq element
'>) (indent-according-to-mode))
378 ((eq element
'&) (if (not (or (= (current-column) 0)
381 "^\\s-*\\=" nil t
))))
383 ((eq element
'%
) (if (not (or (eolp)
386 "\\=\\s-*$" nil t
))))
388 ((eq element
'n
) (insert "\n"))
389 ((eq element
'n
>) (insert "\n") (indent-according-to-mode))
390 ;; Bug: If the 'o is the first element in a template, strange
391 ;; things can happen when the template is inserted at the
392 ;; beginning of a line.
393 ((eq element
'o
) (if (not (or on-region
397 "\\=\\s-*$" nil t
))))
400 (t (tempo-insert (or (tempo-is-user-element element
)
405 ;;; tempo-insert-prompt
407 (defun tempo-insert-prompt-compat (prompt)
408 "Compatibility hack for `tempo-insert-prompt'.
409 PROMPT can be either a prompt string, or a list of arguments to
410 `tempo-insert-prompt', or nil."
411 (if (consp prompt
) ; not nil either
412 (apply 'tempo-insert-prompt prompt
)
413 (tempo-insert-prompt prompt
)))
415 (defun tempo-insert-prompt (prompt &optional save-name no-insert
)
416 "Prompt for a text string and insert it in the current buffer.
417 If the variable `tempo-interactive' is non-nil the user is prompted
418 for a string in the minibuffer, which is then inserted in the current
419 buffer. If `tempo-interactive' is nil, the current point is placed on
422 PROMPT is the prompt string, SAVE-NAME is a name to save the inserted
423 text under. If the optional argument NO-INSERT is non-nil, no text is
424 inserted. This can be useful when there is a SAVE-NAME.
426 If there already is a value for SAVE-NAME, it is used and the user is
429 (previous (and save-name
430 (tempo-lookup-named save-name
))))
432 ;; Insert previous value, unless no-insert is non-nil
435 (tempo-insert-named save-name
)) ; A double lookup here, but who
437 ;; If no-insert is non-nil, don't insert the previous value. Just
441 ;; No previous value. Prompt or insert mark
443 (if (not (stringp prompt
))
444 (error "tempo: The prompt (%s) is not a string" prompt
))
445 (setq insertion
(read-string prompt
))
449 (tempo-save-named save-name insertion
)))
451 (tempo-insert-mark (point-marker))))))
454 ;;; tempo-is-user-element
456 (defun tempo-is-user-element (element)
457 "Tries all the user-defined element handlers in `tempo-user-elements'."
458 ;; Sigh... I need (some list)
460 (mapc (function (lambda (handler)
461 (let ((result (funcall handler element
)))
462 (if result
(throw 'found result
)))))
467 ;;; tempo-forget-insertions
469 (defun tempo-forget-insertions ()
470 "Forget all the saved named insertions."
471 (setq tempo-named-insertions nil
))
476 (defun tempo-save-named (name data
) ; Had an optional prompt for 'v
477 "Save some data for later insertion
478 The contents of DATA is saved under the name NAME.
480 The data can later be retrieved with `tempo-lookup-named'.
482 This function returns nil, so it can be used in a template without
484 (setq tempo-named-insertions
485 (cons (cons name data
)
486 tempo-named-insertions
))
490 ;;; tempo-lookup-named
492 (defun tempo-lookup-named (name)
493 "Lookup some saved data under the name NAME.
494 Returns the data if NAME was found, and nil otherwise."
495 (cdr (assq name tempo-named-insertions
)))
498 ;;; tempo-insert-named
500 (defun tempo-insert-named (name)
501 "Insert the previous insertion saved under a named specified in NAME.
502 If there is no such name saved, a tempo mark is inserted.
504 Note that if the data is a string, it will not be run through the string
506 (let* ((insertion (tempo-lookup-named name
)))
507 (cond ((null insertion
)
508 (tempo-insert-mark (point-marker)))
512 (tempo-insert insertion nil
)))))
516 ;;; tempo-process-and-insert-string
518 (defun tempo-process-and-insert-string (string)
519 "Insert a string from a template.
520 Run a string through the preprocessors in `tempo-insert-string-functions'
521 and insert the results."
522 (cond ((null tempo-insert-string-functions
)
524 ((symbolp tempo-insert-string-functions
)
526 (funcall tempo-insert-string-functions string
)))
527 ((listp tempo-insert-string-functions
)
528 (dolist (fn tempo-insert-string-functions
)
529 (setq string
(funcall fn string
))))
531 (error "Bogus value in tempo-insert-string-functions: %s"
532 tempo-insert-string-functions
)))
536 ;;; tempo-insert-mark
538 (defun tempo-insert-mark (mark)
539 "Insert a mark `tempo-marks' while keeping it sorted."
540 (cond ((null tempo-marks
) (setq tempo-marks
(list mark
)))
541 ((< mark
(car tempo-marks
)) (setq tempo-marks
(cons mark tempo-marks
)))
542 (t (let ((lp tempo-marks
))
544 (<= (car (cdr lp
)) mark
))
546 (if (not (= mark
(car lp
)))
547 (setcdr lp
(cons mark
(cdr lp
))))))))
550 ;;; tempo-forward-mark
552 (defun tempo-forward-mark ()
553 "Jump to the next mark in `tempo-forward-mark-list'."
555 (let ((next-mark (catch 'found
560 (throw 'found mark
))))
562 ;; return nil if not found
565 (goto-char next-mark
))))
568 ;;; tempo-backward-mark
570 (defun tempo-backward-mark ()
571 "Jump to the previous mark in `tempo-back-mark-list'."
573 (let ((prev-mark (catch 'found
578 (if (<= (point) mark
)
584 (goto-char prev-mark
))))
589 (defun tempo-add-tag (tag template
&optional tag-list
)
591 Add the TAG, that should complete to TEMPLATE to the list in TAG-LIST,
592 or to `tempo-tags' if TAG-LIST is nil."
594 (interactive "sTag: \nCTemplate: ")
596 (setq tag-list
'tempo-tags
))
597 (if (not (assoc tag
(symbol-value tag-list
)))
598 (set tag-list
(cons (cons tag template
) (symbol-value tag-list
))))
599 (tempo-invalidate-collection))
602 ;;; tempo-use-tag-list
604 (defun tempo-use-tag-list (tag-list &optional completion-function
)
605 "Install TAG-LIST to be used for template completion in the current buffer.
606 TAG-LIST is a symbol whose variable value is a tag list created with
609 COMPLETION-FUNCTION is an obsolete option for specifying an optional
610 function or string that is used by `\\[tempo-complete-tag]' to find a
611 string to match the tag against. It has the same definition as the
612 variable `tempo-match-finder'. In this version, supplying a
613 COMPLETION-FUNCTION just sets `tempo-match-finder' locally."
614 (let ((old (assq tag-list tempo-local-tags
)))
616 (setcdr old completion-function
)
617 (setq tempo-local-tags
(cons (cons tag-list completion-function
)
619 (if completion-function
620 (setq tempo-match-finder completion-function
))
621 (tempo-invalidate-collection))
624 ;;; tempo-invalidate-collection
626 (defun tempo-invalidate-collection ()
627 "Marks the tag collection as obsolete.
628 Whenever it is needed again it will be rebuilt."
629 (setq tempo-dirty-collection t
))
632 ;;; tempo-build-collection
634 (defun tempo-build-collection ()
635 "Build a collection of all the tags and return it.
636 If `tempo-dirty-collection' is nil, the old collection is reused."
638 (or (and (not tempo-dirty-collection
)
640 (setq tempo-collection
641 (apply (function append
)
642 (mapcar (function (lambda (tag-list)
644 ; tempo-local-tags changes,
646 (eval (car tag-list
))))
648 (setq tempo-dirty-collection nil
)))
651 ;;; tempo-find-match-string
653 (defun tempo-find-match-string (finder)
654 "Find a string to be matched against a tag list.
655 FINDER is a function or a string. Returns (STRING . POS), or nil
656 if no reasonable string is found."
657 (cond ((stringp finder
)
660 (or (setq successful
(re-search-backward finder nil t
))
663 (cons (buffer-substring (match-beginning 1)
664 (match-end 1)) ; This seems to be a
672 ;;; tempo-complete-tag
674 (defun tempo-complete-tag (&optional silent
)
675 "Look for a tag and expand it.
676 All the tags in the tag lists in `tempo-local-tags'
677 \(this includes `tempo-tags') are searched for a match for the text
678 before the point. The way the string to match for is determined can
679 be altered with the variable `tempo-match-finder'. If
680 `tempo-match-finder' returns nil, then the results are the same as
683 If a single match is found, the corresponding template is expanded in
684 place of the matching string.
686 If a partial completion or no match at all is found, and SILENT is
687 non-nil, the function will give a signal.
689 If a partial completion is found and `tempo-show-completion-buffer' is
690 non-nil, a buffer containing possible completions is displayed."
692 ;; This function may look like a hack, but this is how I want it to
695 (let* ((collection (tempo-build-collection))
696 (match-info (tempo-find-match-string tempo-match-finder
))
697 (match-string (car match-info
))
698 (match-start (cdr match-info
))
699 (exact (assoc match-string collection
))
700 (compl (or (car exact
)
701 (and match-info
(try-completion match-string collection
)))))
702 (if compl
(delete-region match-start
(point)))
703 (cond ((null match-info
) (or silent
(ding)))
704 ((null compl
) (or silent
(ding)))
705 ((eq compl t
) (tempo-insert-template
706 (cdr (assoc match-string
709 (t (if (setq exact
(assoc compl collection
))
710 (tempo-insert-template (cdr exact
) nil
)
713 (if tempo-show-completion-buffer
714 (tempo-display-completions match-string
719 ;;; tempo-display-completions
721 (defun tempo-display-completions (string tag-list
)
722 "Show a buffer containing possible completions for STRING."
723 (if tempo-leave-completion-buffer
724 (with-output-to-temp-buffer "*Completions*"
725 (display-completion-list
726 (all-completions string tag-list
)
728 (save-window-excursion
729 (with-output-to-temp-buffer "*Completions*"
730 (display-completion-list
731 (all-completions string tag-list
)
736 ;;; tempo-expand-if-complete
738 (defun tempo-expand-if-complete ()
739 "Expand the tag before point if it is complete.
740 Returns non-nil if an expansion was made and nil otherwise.
742 This could as an example be used in a command that is bound to the
743 space bar, and looks something like this:
745 \(defun tempo-space ()
747 (or (tempo-expand-if-complete)
751 (let* ((collection (tempo-build-collection))
752 (match-info (tempo-find-match-string tempo-match-finder
))
753 (match-string (car match-info
))
754 (match-start (cdr match-info
))
755 (exact (assoc match-string collection
)))
758 (delete-region match-start
(point))
759 (tempo-insert-template (cdr exact
) nil
)
765 ;;; tempo.el ends here