Merge branch 'master' into comment-cache
[emacs.git] / lisp / skeleton.el
blob92de90c6d9baf4af9fd0e77a8a39e69c37e039e5
1 ;;; skeleton.el --- Lisp language extension for writing statement skeletons
3 ;; Copyright (C) 1993-1996, 2001-2017 Free Software Foundation, Inc.
5 ;; Author: Daniel Pfeiffer <occitan@esperanto.org>
6 ;; Maintainer: emacs-devel@gnu.org
7 ;; Keywords: extensions, abbrev, languages, tools
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs 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 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs 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. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; A very concise language extension for writing structured statement
27 ;; skeleton insertion commands for programming language modes. This
28 ;; originated in shell-script mode and was applied to ada-mode's
29 ;; commands which shrunk to one third. And these commands are now
30 ;; user configurable.
32 ;;; Code:
34 (eval-when-compile (require 'cl-lib))
36 ;; page 1: statement skeleton language definition & interpreter
37 ;; page 2: paired insertion
38 ;; page 3: mirror-mode, an example for setting up paired insertion
41 (defvar skeleton-transformation-function 'identity
42 "If non-nil, function applied to literal strings before they are inserted.
43 It should take strings and characters and return them transformed, or nil
44 which means no transformation.
45 Typical examples might be `upcase' or `capitalize'.")
46 (defvaralias 'skeleton-transformation 'skeleton-transformation-function)
48 ; this should be a fourth argument to defvar
49 (put 'skeleton-transformation-function 'variable-interactive
50 "aTransformation function: ")
53 (defvar skeleton-autowrap t
54 "Controls wrapping behavior of functions created with `define-skeleton'.
55 When the region is visible (due to `transient-mark-mode' or marking a region
56 with the mouse) and this is non-nil and the function was called without an
57 explicit ARG, then the ARG defaults to -1, i.e. wrapping around the visible
58 region.")
59 (make-obsolete-variable 'skeleton-autowrap nil "24.5")
61 (defvar skeleton-end-newline t
62 "If non-nil, make sure that the skeleton inserted ends with a newline.")
64 (defvar skeleton-end-hook nil
65 "Hook called at end of skeleton but before going to point of interest.
66 The variables `v1' and `v2' are still set when calling this.")
69 ;;;###autoload
70 (defvar skeleton-filter-function 'identity
71 "Function for transforming a skeleton proxy's aliases' variable value.")
72 (defvaralias 'skeleton-filter 'skeleton-filter-function)
74 (defvar skeleton-untabify nil ; bug#12223
75 "When non-nil untabifies when deleting backwards with element -ARG.")
77 (defvar skeleton-newline-indent-rigidly nil
78 "When non-nil, indent rigidly under current line for element `\\n'.
79 Else use mode's `indent-line-function'.")
81 (defvar-local skeleton-further-elements ()
82 "A buffer-local varlist (see `let') of mode specific skeleton elements.
83 These variables are bound while interpreting a skeleton. Their value may
84 in turn be any valid skeleton element if they are themselves to be used as
85 skeleton elements.")
87 (defvar skeleton-subprompt
88 (substitute-command-keys
89 "RET, \\<minibuffer-local-map>\\[abort-recursive-edit] or \\[help-command]")
90 "Replacement for %s in prompts of recursive subskeletons.")
93 (defvar skeleton-debug nil
94 "If non-nil `define-skeleton' will override previous definition.")
96 (defvar skeleton-positions nil
97 "List of positions marked with @, after skeleton insertion.
98 The list describes the most recent skeleton insertion, and its elements
99 are integer buffer positions in the reverse order of the insertion order.")
101 ;; reduce the number of compiler warnings
102 (defvar skeleton-il)
103 (defvar skeleton-modified)
104 (defvar skeleton-point)
105 (defvar skeleton-regions)
107 (def-edebug-spec skeleton-edebug-spec
108 ([&or null stringp (stringp &rest stringp) [[&not atom] def-form]]
109 &rest &or "n" "_" "-" ">" "@" "&" "!" "resume:"
110 ("quote" def-form) skeleton-edebug-spec def-form))
111 ;;;###autoload
112 (defmacro define-skeleton (command documentation &rest skeleton)
113 "Define a user-configurable COMMAND that enters a statement skeleton.
114 DOCUMENTATION is that of the command.
115 SKELETON is as defined under `skeleton-insert'."
116 (declare (doc-string 2) (debug (&define name stringp skeleton-edebug-spec)))
117 (if skeleton-debug
118 (set command skeleton))
119 `(progn
120 ;; Tell self-insert-command that this function, if called by an
121 ;; abbrev, should cause the self-insert to be skipped.
122 (put ',command 'no-self-insert t)
123 (defun ,command (&optional str arg)
124 ,(concat documentation
125 (if (string-match "\n\\'" documentation)
126 "" "\n")
127 "\n"
128 "This is a skeleton command (see `skeleton-insert').
129 Normally the skeleton text is inserted at point, with nothing \"inside\".
130 If there is a highlighted region, the skeleton text is wrapped
131 around the region text.
133 A prefix argument ARG says to wrap the skeleton around the next ARG words.
134 A prefix argument of -1 says to wrap around region, even if not highlighted.
135 A prefix argument of zero says to wrap around zero words---that is, nothing.
136 This is a way of overriding the use of a highlighted region.")
137 (interactive "*P\nP")
138 (skeleton-proxy-new ',skeleton str arg))))
140 ;;;###autoload
141 (defun skeleton-proxy-new (skeleton &optional str arg)
142 "Insert SKELETON.
143 Prefix ARG allows wrapping around words or regions (see `skeleton-insert').
144 If no ARG was given, but the region is visible, ARG defaults to -1 depending
145 on `skeleton-autowrap'. An ARG of M-0 will prevent this just for once.
146 This command can also be an abbrev expansion (3rd and 4th columns in
147 \\[edit-abbrevs] buffer: \"\" command-name).
149 Optional second argument STR may also be a string which will be the value
150 of `str' whereas the skeleton's interactor is then ignored."
151 (skeleton-insert (funcall skeleton-filter-function skeleton)
152 ;; Pretend C-x a e passed its prefix arg to us
153 (if (or arg current-prefix-arg)
154 (prefix-numeric-value (or arg
155 current-prefix-arg))
156 (and skeleton-autowrap
157 (or (eq last-command 'mouse-drag-region)
158 (and transient-mark-mode mark-active))
159 ;; Deactivate the mark, in case one of the
160 ;; elements of the skeleton is sensitive
161 ;; to such situations (e.g. it is itself a
162 ;; skeleton).
163 (progn (deactivate-mark)
164 -1)))
165 (if (stringp str)
166 str))
167 ;; Return non-nil to tell expand-abbrev that expansion has happened.
168 ;; Otherwise the no-self-insert is ignored.
171 ;;;###autoload
172 (defun skeleton-insert (skeleton &optional regions str)
173 "Insert the complex statement skeleton SKELETON describes very concisely.
175 With optional second argument REGIONS, wrap first interesting point
176 \(`_') in skeleton around next REGIONS words, if REGIONS is positive.
177 If REGIONS is negative, wrap REGIONS preceding interregions into first
178 REGIONS interesting positions (successive `_'s) in skeleton.
180 An interregion is the stretch of text between two contiguous marked
181 points. If you marked A B C [] (where [] is the cursor) in
182 alphabetical order, the 3 interregions are simply the last 3 regions.
183 But if you marked B A [] C, the interregions are B-A, A-[], []-C.
185 The optional third argument STR, if specified, is the value for the
186 variable `str' within the skeleton. When this is non-nil, the
187 interactor gets ignored, and this should be a valid skeleton element.
189 When done with skeleton, but before going back to `_'-point, add
190 a newline (unless `skeleton-end-newline' is nil) and run the hook
191 `skeleton-end-hook'.
193 SKELETON is made up as (INTERACTOR ELEMENT ...). INTERACTOR may be nil if
194 not needed, a prompt-string or an expression for complex read functions.
196 If ELEMENT is a string or a character it gets inserted (see also
197 `skeleton-transformation-function'). Other possibilities are:
199 \\n go to next line and indent according to mode, unless
200 this is the first/last element of a skeleton and point
201 is at bol/eol
202 _ interesting point, interregion here
203 - interesting point, no interregion interaction, overrides
204 interesting point set by _
205 > indent line (or interregion if > _) according to major mode
206 @ add position to `skeleton-positions'
207 & do next ELEMENT if previous moved point
208 | do next ELEMENT if previous didn't move point
209 -NUM delete NUM preceding characters (see `skeleton-untabify')
210 resume: skipped, continue here if quit is signaled
211 nil skipped
213 After termination, point will be positioned at the last occurrence of -
214 or at the first occurrence of _ or at the end of the inserted text.
216 Note that \\n as the last element of the skeleton only inserts a
217 newline if not at eol. If you want to unconditionally insert a newline
218 at the end of the skeleton, use \"\\n\" instead. Likewise with \\n
219 as the first element when at bol.
221 Further elements can be defined via `skeleton-further-elements'.
222 ELEMENT may itself be a SKELETON with an INTERACTOR. The user is prompted
223 repeatedly for different inputs. The SKELETON is processed as often as
224 the user enters a non-empty string. \\[keyboard-quit] terminates skeleton insertion, but
225 continues after `resume:' and positions at `_' if any. If INTERACTOR in
226 such a subskeleton is a prompt-string which contains a \".. %s ..\" it is
227 formatted with `skeleton-subprompt'. Such an INTERACTOR may also be a list
228 of strings with the subskeleton being repeated once for each string.
230 Quoted Lisp expressions are evaluated for their side-effects.
231 Other Lisp expressions are evaluated and the value treated as above.
232 Note that expressions may not return t since this implies an
233 endless loop. Modes can define other symbols by locally setting them
234 to any valid skeleton element. The following local variables are
235 available:
237 str first time: read a string according to INTERACTOR
238 then: insert previously read string once more
239 help help-form during interaction with the user or nil
240 input initial input (string or cons with index) while reading str
241 v1, v2 local variables for memorizing anything you want"
242 (let ((skeleton-regions regions))
243 (and skeleton-regions
244 (setq skeleton-regions
245 (if (> skeleton-regions 0)
246 (list (copy-marker (point) t)
247 (save-excursion (forward-word-strictly
248 skeleton-regions)
249 (point-marker)))
250 (setq skeleton-regions (- skeleton-regions))
251 ;; copy skeleton-regions - 1 elements from `mark-ring'
252 (let ((l1 (cons (mark-marker) mark-ring))
253 (l2 (list (copy-marker (point) t))))
254 (while (and l1 (> skeleton-regions 0))
255 (push (copy-marker (pop l1) t) l2)
256 (setq skeleton-regions (1- skeleton-regions)))
257 (sort l2 '<))))
258 (goto-char (car skeleton-regions))
259 (setq skeleton-regions (cdr skeleton-regions)))
260 (let ((beg (point))
261 skeleton-modified skeleton-point resume: help input v1 v2)
262 (setq skeleton-positions nil)
263 (unwind-protect
264 (cl-progv
265 (mapcar #'car skeleton-further-elements)
266 (mapcar (lambda (x) (eval (cadr x))) skeleton-further-elements)
267 (skeleton-internal-list skeleton str))
268 (or (eolp) (not skeleton-end-newline) (newline-and-indent))
269 (run-hooks 'skeleton-end-hook)
270 (sit-for 0)
271 (or (pos-visible-in-window-p beg)
272 (progn
273 (goto-char beg)
274 (recenter 0)))
275 (if skeleton-point
276 (goto-char skeleton-point))))))
278 (defun skeleton-read (prompt &optional initial-input recursive)
279 "Function for reading a string from the minibuffer within skeletons.
281 PROMPT must be a string or a function that evaluates to a string.
282 It may also be a form that evaluates to a string (deprecated).
283 It may contain a `%s' which will be replaced by `skeleton-subprompt'.
284 If non-nil second arg INITIAL-INPUT or variable `input' is a string or
285 cons with index to insert before reading. If third arg RECURSIVE is non-nil
286 i.e. we are handling the iterator of a subskeleton, returns empty string if
287 user didn't modify input.
288 While reading, the value of `minibuffer-help-form' is variable `help' if that
289 is non-nil or a default string."
290 (let ((minibuffer-help-form (or (if (boundp 'help) (symbol-value 'help))
291 (if recursive "\
292 As long as you provide input you will insert another subskeleton.
294 If you enter the empty string, the loop inserting subskeletons is
295 left, and the current one is removed as far as it has been entered.
297 If you quit, the current subskeleton is removed as far as it has been
298 entered. No more of the skeleton will be inserted, except maybe for a
299 syntactically necessary termination."
301 You are inserting a skeleton. Standard text gets inserted into the buffer
302 automatically, and you are prompted to fill in the variable parts.")))
303 (eolp (eolp)))
304 ;; since Emacs doesn't show main window's cursor, do something noticeable
305 (or eolp
306 ;; We used open-line before, but that can do a lot more than we want,
307 ;; since it runs self-insert-command. E.g. it may remove spaces
308 ;; before point.
309 (save-excursion (insert "\n")))
310 (unwind-protect
311 (setq prompt (cond ((stringp prompt)
312 (read-string (format prompt skeleton-subprompt)
313 (setq initial-input
314 (or initial-input
315 (symbol-value 'input)))))
316 ((functionp prompt)
317 (funcall prompt))
318 (t (eval prompt))))
319 (or eolp
320 (delete-char 1))))
321 (if (and recursive
322 (or (null prompt)
323 (string= prompt "")
324 (equal prompt initial-input)
325 (equal prompt (car-safe initial-input))))
326 (signal 'quit t)
327 prompt))
329 (defun skeleton-internal-list (skeleton-il &optional str recursive)
330 (let* ((start (line-beginning-position))
331 (column (current-column))
332 (line (buffer-substring start (line-end-position)))
333 opoint)
334 (or str
335 (setq str `(setq str
336 (skeleton-read ',(car skeleton-il) nil ,recursive))))
337 (when (and (eq (cadr skeleton-il) '\n) (not recursive)
338 (save-excursion (skip-chars-backward " \t") (bolp)))
339 (setq skeleton-il (cons nil (cons '> (cddr skeleton-il)))))
340 (while (setq skeleton-modified (eq opoint (point))
341 opoint (point)
342 skeleton-il (cdr skeleton-il))
343 (condition-case quit
344 (skeleton-internal-1 (car skeleton-il) nil recursive)
345 (quit
346 (if (eq (cdr quit) 'recursive)
347 (setq recursive 'quit
348 skeleton-il (memq 'resume: skeleton-il))
349 ;; Remove the subskeleton as far as it has been shown
350 ;; the subskeleton shouldn't have deleted outside current line.
351 (end-of-line)
352 (delete-region start (point))
353 (insert line)
354 (move-to-column column)
355 (if (cdr quit)
356 (setq skeleton-il ()
357 recursive nil)
358 (signal 'quit 'recursive)))))))
359 ;; maybe continue loop or go on to next outer resume: section
360 (if (eq recursive 'quit)
361 (signal 'quit 'recursive)
362 recursive))
365 (defun skeleton-internal-1 (element &optional literal recursive)
366 (cond
367 ((or (integerp element) (stringp element))
368 (if (and (integerp element) ; -num
369 (< element 0))
370 (if skeleton-untabify
371 (backward-delete-char-untabify (- element))
372 (delete-char element))
373 (insert (if (not literal)
374 (funcall skeleton-transformation-function element)
375 element))))
376 ((or (eq element '\n) ; actually (eq '\n 'n)
377 ;; The sequence `> \n' is handled specially so as to indent the first
378 ;; line after inserting the newline (to get the proper indentation).
379 (and (eq element '>) (eq (nth 1 skeleton-il) '\n) (pop skeleton-il)))
380 (let ((pos (if (eq element '>) (point))))
381 (cond
382 ((and skeleton-regions (eq (nth 1 skeleton-il) '_))
383 (or (eolp) (insert "\n"))
384 (if pos (save-excursion (goto-char pos) (indent-according-to-mode)))
385 (indent-region (line-beginning-position)
386 (car skeleton-regions) nil))
387 ;; \n as last element only inserts \n if not at eol.
388 ((and (null (cdr skeleton-il)) (not recursive) (eolp))
389 (if pos (indent-according-to-mode)))
390 (skeleton-newline-indent-rigidly
391 (let ((pt (point)))
392 (insert "\n")
393 (indent-to (save-excursion
394 (goto-char pt)
395 (if pos (indent-according-to-mode))
396 (current-indentation)))))
397 (t (if pos (reindent-then-newline-and-indent)
398 (insert "\n")
399 (indent-according-to-mode))))))
400 ((eq element '>)
401 (if (and skeleton-regions (eq (nth 1 skeleton-il) '_))
402 (indent-region (line-beginning-position)
403 (car skeleton-regions) nil)
404 (indent-according-to-mode)))
405 ((eq element '_)
406 (if skeleton-regions
407 (progn
408 (goto-char (pop skeleton-regions))
409 (and (<= (current-column) (current-indentation))
410 (eq (nth 1 skeleton-il) '\n)
411 (end-of-line 0)))
412 (or skeleton-point
413 (setq skeleton-point (point)))))
414 ((eq element '-)
415 (setq skeleton-point (point)))
416 ((eq element '&)
417 (when skeleton-modified (pop skeleton-il)))
418 ((eq element '|)
419 (unless skeleton-modified (pop skeleton-il)))
420 ((eq element '@)
421 (push (point) skeleton-positions))
422 ((eq 'quote (car-safe element))
423 (eval (nth 1 element)))
424 ((and (consp element)
425 (or (stringp (car element)) (listp (car element))))
426 ;; Don't forget: `symbolp' is also true for nil.
427 (if (symbolp (car-safe (car element)))
428 (while (and (skeleton-internal-list element nil t)
429 ;; If the interactor is nil, don't infinite loop.
430 (car element)))
431 (setq literal (car element))
432 (while literal
433 (skeleton-internal-list element (car literal))
434 (setq literal (cdr literal)))))
435 ((null element))
436 (t (skeleton-internal-1 (eval element) t recursive))))
438 ;; Maybe belongs into simple.el or elsewhere
439 ;; ;;;###autoload
440 ;; (define-skeleton local-variables-section
441 ;; "Insert a local variables section. Use current comment syntax if any."
442 ;; (completing-read "Mode: " obarray
443 ;; (lambda (symbol)
444 ;; (if (commandp symbol)
445 ;; (string-match "-mode$" (symbol-name symbol))))
446 ;; t)
447 ;; '(save-excursion
448 ;; (if (re-search-forward page-delimiter nil t)
449 ;; (error "Not on last page")))
450 ;; comment-start "Local Variables:" comment-end \n
451 ;; comment-start "mode: " str
452 ;; & -5 | '(kill-line 0) & -1 | comment-end \n
453 ;; ( (completing-read (format "Variable, %s: " skeleton-subprompt)
454 ;; obarray
455 ;; (lambda (symbol)
456 ;; (or (eq symbol 'eval)
457 ;; (custom-variable-p symbol)))
458 ;; t)
459 ;; comment-start str ": "
460 ;; (read-from-minibuffer "Expression: " nil read-expression-map nil
461 ;; 'read-expression-history) | _
462 ;; comment-end \n)
463 ;; resume:
464 ;; comment-start "End:" comment-end \n)
466 ;; Variables and command for automatically inserting pairs like () or "".
468 (defvar skeleton-pair nil
469 "If this is nil pairing is turned off, no matter what else is set.
470 Otherwise modes with `skeleton-pair-insert-maybe' on some keys
471 will attempt to insert pairs of matching characters.")
474 (defvar skeleton-pair-on-word nil
475 "If this is nil, paired insertion is inhibited before or inside a word.")
478 (defvar skeleton-pair-filter-function (lambda () nil)
479 "Attempt paired insertion if this function returns nil, before inserting.
480 This allows for context-sensitive checking whether pairing is appropriate.")
483 (defvar skeleton-pair-alist ()
484 "An override alist of pairing partners matched against `last-command-event'.
485 Each alist element, which looks like (ELEMENT ...), is passed to
486 `skeleton-insert' with no interactor. Variable `str' does nothing.
488 Elements might be (?\\=` ?\\=` _ \"\\='\\='\"), (?\\( ? _ \" )\") or (?{ \\n > _ \\n ?} >).")
490 (defvar skeleton-pair-default-alist '((?( _ ?)) (?\))
491 (?[ _ ?]) (?\])
492 (?{ _ ?}) (?\})
493 (?< _ ?>) (?\>)
494 (?« _ ?») (?\»)
495 (?` _ ?')))
497 ;;;###autoload
498 (defun skeleton-pair-insert-maybe (arg)
499 "Insert the character you type ARG times.
501 With no ARG, if `skeleton-pair' is non-nil, pairing can occur. If the region
502 is visible the pair is wrapped around it depending on `skeleton-autowrap'.
503 Else, if `skeleton-pair-on-word' is non-nil or we are not before or inside a
504 word, and if `skeleton-pair-filter-function' returns nil, pairing is performed.
505 Pairing is also prohibited if we are right after a quoting character
506 such as backslash.
508 If a match is found in `skeleton-pair-alist', that is inserted, else
509 the defaults are used. These are (), [], {}, <> and (grave
510 accent, apostrophe) for the paired ones, and the same character
511 twice for the others."
512 (interactive "*P")
513 (if (or arg (not skeleton-pair))
514 (self-insert-command (prefix-numeric-value arg))
515 (let* ((mark (and skeleton-autowrap
516 (or (eq last-command 'mouse-drag-region)
517 (and transient-mark-mode mark-active))))
518 (char last-command-event)
519 (skeleton (or (assq char skeleton-pair-alist)
520 (assq char skeleton-pair-default-alist)
521 `(,char _ ,char))))
522 (if (or (memq (char-syntax (preceding-char)) '(?\\ ?/))
523 (and (not mark)
524 (or overwrite-mode
525 (if (not skeleton-pair-on-word) (looking-at "\\w"))
526 (funcall skeleton-pair-filter-function))))
527 (self-insert-command (prefix-numeric-value arg))
528 ;; Newlines not desirable for inserting pairs. See bug#16138.
529 (let ((skeleton-end-newline nil))
530 (skeleton-insert (cons nil skeleton) (if mark -1)))))))
533 ;; A more serious example can be found in sh-script.el
534 ;; (defun mirror-mode ()
535 ;; "This major mode is an amusing little example of paired insertion.
536 ;;All printable characters do a paired self insert, while the other commands
537 ;;work normally."
538 ;; (interactive)
539 ;; (kill-all-local-variables)
540 ;; (make-local-variable 'skeleton-pair)
541 ;; (make-local-variable 'skeleton-pair-on-word)
542 ;; (make-local-variable 'skeleton-pair-filter-function)
543 ;; (make-local-variable 'skeleton-pair-alist)
544 ;; (setq major-mode 'mirror-mode
545 ;; mode-name "Mirror"
546 ;; skeleton-pair-on-word t
547 ;; ;; in the middle column insert one or none if odd window-width
548 ;; skeleton-pair-filter-function (lambda ()
549 ;; (if (>= (current-column)
550 ;; (/ (window-width) 2))
551 ;; ;; insert both on next line
552 ;; (next-line 1)
553 ;; ;; insert one or both?
554 ;; (= (* 2 (1+ (current-column)))
555 ;; (window-width))))
556 ;; ;; mirror these the other way round as well
557 ;; skeleton-pair-alist '((?) _ ?()
558 ;; (?] _ ?[)
559 ;; (?} _ ?{)
560 ;; (?> _ ?<)
561 ;; (?/ _ ?\\)
562 ;; (?\\ _ ?/)
563 ;; (?` ?` _ "''")
564 ;; (?' ?' _ "``"))
565 ;; ;; in this mode we exceptionally ignore the user, else it's no fun
566 ;; skeleton-pair t)
567 ;; (let ((map (make-vector 256 'skeleton-pair-insert-maybe))
568 ;; (i 0))
569 ;; (use-local-map `(keymap ,map))
570 ;; (while (< i ? )
571 ;; (aset map i nil)
572 ;; (aset map (+ i 128) nil)
573 ;; (setq i (1+ i))))
574 ;; (run-mode-hooks 'mirror-mode-hook))
576 (provide 'skeleton)
578 ;;; skeleton.el ends here