]> code.delx.au - gnu-emacs-elpa/blob - yasnippet.el
Closes #290: problem when advancing the start of a mirror-in-field
[gnu-emacs-elpa] / yasnippet.el
1 ;;; yasnippet.el --- Yet another snippet extension for Emacs.
2
3 ;; Copyright (C) 2008-2012 Free Software Foundation, Inc.
4 ;; Authors: pluskid <pluskid@gmail.com>, João Távora <joaotavora@gmail.com>
5 ;; Version: 0.8.0
6 ;; Package-version: 0.8.0
7 ;; X-URL: http://github.com/capitaomorte/yasnippet
8 ;; Keywords: convenience, emulation
9 ;; URL: http://github.com/capitaomorte/yasnippet
10 ;; EmacsWiki: YaSnippetMode
11
12 ;; This program 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.
16
17 ;; This program 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.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
24
25 ;;; Commentary:
26 ;;
27 ;; Basic steps to setup:
28 ;;
29 ;; (add-to-list 'load-path
30 ;; "~/path-to-yasnippet")
31 ;; (require 'yasnippet)
32 ;; (yas-global-mode 1)
33 ;;
34 ;;
35 ;; Interesting variables are:
36 ;;
37 ;; `yas-snippet-dirs'
38 ;;
39 ;; The directory where user-created snippets are to be
40 ;; stored. Can also be a list of directories. In that case,
41 ;; when used for bulk (re)loading of snippets (at startup or
42 ;; via `yas-reload-all'), directories appearing earlier in
43 ;; the list shadow other dir's snippets. Also, the first
44 ;; directory is taken as the default for storing the user's
45 ;; new snippets.
46 ;;
47 ;; The deprecated `yas/root-directory' aliases this variable
48 ;; for backward-compatibility.
49 ;;
50 ;; `yas-extra-modes'
51 ;;
52 ;; A local variable that you can set in a hook to override
53 ;; snippet-lookup based on major mode. It is a a symbol (or
54 ;; list of symbols) that correspond to subdirectories of
55 ;; `yas-snippet-dirs' and is used for deciding which
56 ;; snippets to consider for the active buffer.
57 ;;
58 ;; Deprecated `yas/mode-symbol' aliases this variable for
59 ;; backward-compatibility.
60 ;;
61 ;; Major commands are:
62 ;;
63 ;; M-x yas-expand
64 ;;
65 ;; Try to expand snippets before point. In `yas-minor-mode',
66 ;; this is bound to `yas-trigger-key' which you can customize.
67 ;;
68 ;; M-x yas-load-directory
69 ;;
70 ;; Prompts you for a directory hierarchy of snippets to load.
71 ;;
72 ;; M-x yas-insert-snippet
73 ;;
74 ;; Prompts you for possible snippet expansion if that is
75 ;; possible according to buffer-local and snippet-local
76 ;; expansion conditions. With prefix argument, ignore these
77 ;; conditions.
78 ;;
79 ;; M-x yas-visit-snippet-file
80 ;;
81 ;; Prompts you for possible snippet expansions like
82 ;; `yas-insert-snippet', but instead of expanding it, takes
83 ;; you directly to the snippet definition's file, if it
84 ;; exists.
85 ;;
86 ;; M-x yas-new-snippet
87 ;;
88 ;; Lets you create a new snippet file in the correct
89 ;; subdirectory of `yas-snippet-dirs', according to the
90 ;; active major mode.
91 ;;
92 ;; M-x yas-load-snippet-buffer
93 ;;
94 ;; When editing a snippet, this loads the snippet. This is
95 ;; bound to "C-c C-c" while in the `snippet-mode' editing
96 ;; mode.
97 ;;
98 ;; M-x yas-tryout-snippet
99 ;;
100 ;; When editing a snippet, this opens a new empty buffer,
101 ;; sets it to the appropriate major mode and inserts the
102 ;; snippet there, so you can see what it looks like. This is
103 ;; bound to "C-c C-t" while in `snippet-mode'.
104 ;;
105 ;; M-x yas-describe-tables
106 ;;
107 ;; Lists known snippets in a separate buffer. User is
108 ;; prompted as to whether only the currently active tables
109 ;; are to be displayed, or all the tables for all major
110 ;; modes.
111 ;;
112 ;; The `dropdown-list.el' extension is bundled with YASnippet, you
113 ;; can optionally use it the preferred "prompting method", puting in
114 ;; your .emacs file, for example:
115 ;;
116 ;; (require 'dropdown-list)
117 ;; (setq yas-prompt-functions '(yas-dropdown-prompt
118 ;; yas-ido-prompt
119 ;; yas-completing-prompt))
120 ;;
121 ;; Also check out the customization group
122 ;;
123 ;; M-x customize-group RET yasnippet RET
124 ;;
125 ;; If you use the customization group to set variables
126 ;; `yas-snippet-dirs' or `yas-global-mode', make sure the path to
127 ;; "yasnippet.el" is present in the `load-path' *before* the
128 ;; `custom-set-variables' is executed in your .emacs file.
129 ;;
130 ;; For more information and detailed usage, refer to the project page:
131 ;; http://github.com/capitaomorte/yasnippet
132
133 ;;; Code:
134
135 (require 'cl)
136 (require 'easymenu)
137 (require 'help-mode)
138
139 \f
140 ;;; User customizable variables
141
142 (defgroup yasnippet nil
143 "Yet Another Snippet extension"
144 :group 'editing)
145
146 (defvar yas--load-file-name load-file-name
147 "Store the filename that yasnippet.el was originally loaded from.")
148
149 (defcustom yas-snippet-dirs (remove nil
150 (list "~/.emacs.d/snippets"
151 (when yas--load-file-name
152 (concat (file-name-directory yas--load-file-name) "snippets"))))
153 "Directory or list of snippet dirs for each major mode.
154
155 The directory where user-created snippets are to be stored. Can
156 also be a list of directories. In that case, when used for
157 bulk (re)loading of snippets (at startup or via
158 `yas-reload-all'), directories appearing earlier in the list
159 shadow other dir's snippets. Also, the first directory is taken
160 as the default for storing the user's new snippets."
161 :type '(choice (string :tag "Single directory (string)")
162 (repeat :args (string) :tag "List of directories (strings)"))
163 :group 'yasnippet
164 :require 'yasnippet
165 :set #'(lambda (symbol new)
166 (let ((old (and (boundp symbol)
167 (symbol-value symbol))))
168 (set-default symbol new)
169 (unless (or (not (fboundp 'yas-reload-all))
170 (equal old new))
171 (yas-reload-all)))))
172
173 (defun yas-snippet-dirs ()
174 "Returns `yas-snippet-dirs' (which see) as a list."
175 (if (listp yas-snippet-dirs) yas-snippet-dirs (list yas-snippet-dirs)))
176
177 (defvaralias 'yas/root-directory 'yas-snippet-dirs)
178
179 (defcustom yas-prompt-functions '(yas-x-prompt
180 yas-dropdown-prompt
181 yas-completing-prompt
182 yas-ido-prompt
183 yas-no-prompt)
184 "Functions to prompt for keys, templates, etc interactively.
185
186 These functions are called with the following arguments:
187
188 - PROMPT: A string to prompt the user
189
190 - CHOICES: a list of strings or objects.
191
192 - optional DISPLAY-FN : A function that, when applied to each of
193 the objects in CHOICES will return a string.
194
195 The return value of any function you put here should be one of
196 the objects in CHOICES, properly formatted with DISPLAY-FN (if
197 that is passed).
198
199 - To signal that your particular style of prompting is
200 unavailable at the moment, you can also have the function return
201 nil.
202
203 - To signal that the user quit the prompting process, you can
204 signal `quit' with
205
206 (signal 'quit \"user quit!\")."
207 :type '(repeat function)
208 :group 'yasnippet)
209
210 (defcustom yas-indent-line 'auto
211 "Controls indenting applied to a recent snippet expansion.
212
213 The following values are possible:
214
215 - `fixed' Indent the snippet to the current column;
216
217 - `auto' Indent each line of the snippet with `indent-according-to-mode'
218
219 Every other value means don't apply any snippet-side indendation
220 after expansion (the manual per-line \"$>\" indentation still
221 applies)."
222 :type '(choice (const :tag "Nothing" nothing)
223 (const :tag "Fixed" fixed)
224 (const :tag "Auto" auto))
225 :group 'yasnippet)
226
227 (defcustom yas-also-auto-indent-first-line nil
228 "Non-nil means also auto indent first line according to mode.
229
230 Naturally this is only valid when `yas-indent-line' is `auto'"
231 :type 'boolean
232 :group 'yasnippet)
233
234 (defcustom yas-snippet-revival t
235 "Non-nil means re-activate snippet fields after undo/redo."
236 :type 'boolean
237 :group 'yasnippet)
238
239 (defcustom yas-trigger-key "<tab>"
240 "The key bound to `yas-expand' when `yas-minor-mode' is active.
241
242 Value is a string that is converted to the internal Emacs key
243 representation using `read-kbd-macro'."
244 :type 'string
245 :group 'yasnippet
246 :set #'(lambda (symbol key)
247 (let ((old (and (boundp symbol)
248 (symbol-value symbol))))
249 (set-default symbol key)
250 ;; On very first loading of this defcustom,
251 ;; `yas-trigger-key' is *not* loaded.
252 (if (fboundp 'yas--trigger-key-reload)
253 (yas--trigger-key-reload old)))))
254
255 (defcustom yas-next-field-key '("TAB" "<tab>")
256 "The key to navigate to next field when a snippet is active.
257
258 Value is a string that is converted to the internal Emacs key
259 representation using `read-kbd-macro'.
260
261 Can also be a list of strings."
262 :type '(choice (string :tag "String")
263 (repeat :args (string) :tag "List of strings"))
264 :group 'yasnippet
265 :set #'(lambda (symbol val)
266 (set-default symbol val)
267 (if (fboundp 'yas--init-yas-in-snippet-keymap)
268 (yas--init-yas-in-snippet-keymap))))
269
270
271 (defcustom yas-prev-field-key '("<backtab>" "<S-tab>")
272 "The key to navigate to previous field when a snippet is active.
273
274 Value is a string that is converted to the internal Emacs key
275 representation using `read-kbd-macro'.
276
277 Can also be a list of strings."
278 :type '(choice (string :tag "String")
279 (repeat :args (string) :tag "List of strings"))
280 :group 'yasnippet
281 :set #'(lambda (symbol val)
282 (set-default symbol val)
283 (if (fboundp 'yas--init-yas-in-snippet-keymap)
284 (yas--init-yas-in-snippet-keymap))))
285
286 (defcustom yas-skip-and-clear-key '("C-d" "<delete>" "<deletechar>")
287 "The key to clear the currently active field.
288
289 Value is a string that is converted to the internal Emacs key
290 representation using `read-kbd-macro'.
291
292 Can also be a list of strings."
293 :type '(choice (string :tag "String")
294 (repeat :args (string) :tag "List of strings"))
295 :group 'yasnippet
296 :set #'(lambda (symbol val)
297 (set-default symbol val)
298 (if (fboundp 'yas--init-yas-in-snippet-keymap)
299 (yas--init-yas-in-snippet-keymap))))
300
301 (defcustom yas-triggers-in-field nil
302 "If non-nil, `yas-next-field-key' can trigger stacked expansions.
303
304 Otherwise, `yas-next-field-key' just tries to move on to the next
305 field"
306 :type 'boolean
307 :group 'yasnippet)
308
309 (defcustom yas-fallback-behavior 'call-other-command
310 "How to act when `yas-trigger-key' does *not* expand a snippet.
311
312 - `call-other-command' means try to temporarily disable YASnippet
313 and call the next command bound to `yas-trigger-key'.
314
315 - nil or the symbol `return-nil' mean do nothing. (and
316 `yas-expand' returns nil)
317
318 - A lisp form (apply COMMAND . ARGS) means interactively call
319 COMMAND, if ARGS is non-nil, call COMMAND non-interactively
320 with ARGS as arguments."
321 :type '(choice (const :tag "Call previous command" call-other-command)
322 (const :tag "Do nothing" return-nil))
323 :group 'yasnippet)
324
325 (defcustom yas-choose-keys-first nil
326 "If non-nil, prompt for snippet key first, then for template.
327
328 Otherwise prompts for all possible snippet names.
329
330 This affects `yas-insert-snippet' and `yas-visit-snippet-file'."
331 :type 'boolean
332 :group 'yasnippet)
333
334 (defcustom yas-choose-tables-first nil
335 "If non-nil, and multiple eligible snippet tables, prompts user for tables first.
336
337 Otherwise, user chooses between the merging together of all
338 eligible tables.
339
340 This affects `yas-insert-snippet', `yas-visit-snippet-file'"
341 :type 'boolean
342 :group 'yasnippet)
343
344 (defcustom yas-use-menu 'abbreviate
345 "Display a YASnippet menu in the menu bar.
346
347 When non-nil, submenus for each snippet table will be listed
348 under the menu \"Yasnippet\".
349
350 - If set to `abbreviate', only the current major-mode
351 menu and the modes set in `yas-extra-modes' are listed.
352
353 - If set to `full', every submenu is listed
354
355 - It set to nil, don't display a menu at all (this requires a
356 `yas-reload-all' call if the menu is already visible).
357
358 Any other non-nil value, every submenu is listed."
359 :type '(choice (const :tag "Full" full)
360 (const :tag "Abbreviate" abbreviate)
361 (const :tag "No menu" nil))
362 :group 'yasnippet)
363
364 (defcustom yas-trigger-symbol (if (eq window-system 'mac)
365 (char-to-string ?\x21E5) ;; little ->| sign
366 " =>")
367 "The text that will be used in menu to represent the trigger."
368 :type 'string
369 :group 'yasnippet)
370
371 (defcustom yas-wrap-around-region nil
372 "If non-nil, snippet expansion wraps around selected region.
373
374 The wrapping occurs just before the snippet's exit marker. This
375 can be overriden on a per-snippet basis."
376 :type 'boolean
377 :group 'yasnippet)
378
379 (defcustom yas-good-grace t
380 "If non-nil, don't raise errors in inline elisp evaluation.
381
382 An error string \"[yas] error\" is returned instead."
383 :type 'boolean
384 :group 'yasnippet)
385
386 (defcustom yas-visit-from-menu nil
387 "If non-nil visit snippets's files from menu, instead of expanding them.
388
389 This cafn only work when snippets are loaded from files."
390 :type 'boolean
391 :group 'yasnippet)
392
393 (defcustom yas-expand-only-for-last-commands nil
394 "List of `last-command' values to restrict tab-triggering to, or nil.
395
396 Leave this set at nil (the default) to be able to trigger an
397 expansion simply by placing the cursor after a valid tab trigger,
398 using whichever commands.
399
400 Optionallly, set this to something like '(self-insert-command) if
401 you to wish restrict expansion to only happen when the last
402 letter of the snippet tab trigger was typed immediately before
403 the trigger key itself."
404 :type '(repeat function)
405 :group 'yasnippet)
406
407 ;; Only two faces, and one of them shouldn't even be used...
408 ;;
409 (defface yas-field-highlight-face
410 '((t (:inherit 'region)))
411 "The face used to highlight the currently active field of a snippet"
412 :group 'yasnippet)
413
414 (defface yas--field-debug-face
415 '()
416 "The face used for debugging some overlays normally hidden"
417 :group 'yasnippet)
418
419 \f
420 ;;; User can also customize the next defvars
421
422 (defun yas--define-some-keys (keys keymap definition)
423 "Bind KEYS to DEFINITION in KEYMAP, read with `read-kbd-macro'."
424 (let ((keys (or (and (listp keys) keys)
425 (list keys))))
426 (dolist (key keys)
427 (define-key keymap (read-kbd-macro key) definition))))
428
429 (defun yas--init-yas-in-snippet-keymap ()
430 (setq yas-keymap
431 (let ((map (make-sparse-keymap)))
432 (mapc #'(lambda (binding)
433 (yas--define-some-keys (car binding) map (cdr binding)))
434 `((,yas-next-field-key . yas-next-field-or-maybe-expand)
435 (,yas-prev-field-key . yas-prev-field)
436 ("C-g" . yas-abort-snippet)
437 (,yas-skip-and-clear-key . yas-skip-and-clear-or-delete-char)))
438 map)))
439
440 (defvar yas-keymap (yas--init-yas-in-snippet-keymap)
441 "The keymap active while a snippet expansion is in progress.")
442
443 (defvar yas-key-syntaxes (list "w" "w_" "w_." "w_.()" "^ ")
444 "List of character syntaxes used to find a trigger key before point.
445 The list is tried in the order while scanning characters
446 backwards from point. For example, if the list is '(\"w\" \"w_\")
447 first look for trigger keys which are composed exclusively of
448 \"word\"-syntax characters, and then, if that fails, look for
449 keys which are either of \"word\" or \"symbol\"
450 syntax. Triggering after
451
452 foo-bar
453
454 will, according to the \"w\" element first try \"bar\". If that
455 isn't a trigger key, \"foo-bar\" is tried, respecting a second
456 \"w_\" element.")
457
458 (defvar yas-after-exit-snippet-hook
459 '()
460 "Hooks to run after a snippet exited.
461
462 The hooks will be run in an environment where some variables bound to
463 proper values:
464
465 `yas-snippet-beg' : The beginning of the region of the snippet.
466
467 `yas-snippet-end' : Similar to beg.
468
469 Attention: These hooks are not run when exiting nested/stackd snippet expansion!")
470
471 (defvar yas-before-expand-snippet-hook
472 '()
473 "Hooks to run just before expanding a snippet.")
474
475 (defvar yas-buffer-local-condition
476 '(if (and (or (fourth (syntax-ppss))
477 (fifth (syntax-ppss)))
478 (eq (symbol-function this-command) 'yas-expand-from-trigger-key))
479 '(require-snippet-condition . force-in-comment)
480 t)
481 "Snippet expanding condition.
482
483 This variable is a lisp form which is evaluated everytime a
484 snippet expansion is attemped:
485
486 * If it evaluates to nil, no snippets can be expanded.
487
488 * If it evaluates to the a cons (require-snippet-condition
489 . REQUIREMENT)
490
491 * Snippets bearing no \"# condition:\" directive are not
492 considered
493
494 * Snippets bearing conditions that evaluate to nil (or
495 produce an error) won't be onsidered.
496
497 * If the snippet has a condition that evaluates to non-nil
498 RESULT:
499
500 * If REQUIREMENT is t, the snippet is considered
501
502 * If REQUIREMENT is `eq' RESULT, the snippet is
503 considered
504
505 * Otherwise, the snippet is not considered.
506
507 * If it evaluates to the symbol 'always, all snippets are
508 considered for expansion, regardless of any conditions.
509
510 * If it evaluates to t or some other non-nil value
511
512 * Snippet bearing no conditions, or conditions that
513 evaluate to non-nil, are considered for expansion.
514
515 * Otherwise, the snippet is not considered.
516
517 Here's an example preventing snippets from being expanded from
518 inside comments, in `python-mode' only, with the exception of
519 snippets returning the symbol 'force-in-comment in their
520 conditions.
521
522 (add-hook 'python-mode-hook
523 '(lambda ()
524 (setq yas-buffer-local-condition
525 '(if (python-in-string/comment)
526 '(require-snippet-condition . force-in-comment)
527 t))))
528
529 The default value is similar, it filters out potential snippet
530 expansions inside comments and string literals, unless the
531 snippet itself contains a condition that returns the symbol
532 `force-in-comment'.")
533
534 \f
535 ;;; Internal variables
536
537 (defvar yas--version "0.8.0 (beta)")
538
539 (defvar yas--menu-table (make-hash-table)
540 "A hash table of MAJOR-MODE symbols to menu keymaps.")
541
542 (defvar yas--known-modes
543 '(ruby-mode rst-mode markdown-mode)
544 "A list of mode which is well known but not part of emacs.")
545
546 (defvar yas--escaped-characters
547 '(?\\ ?` ?\" ?' ?$ ?} ?{ ?\( ?\))
548 "List of characters which *might* need to be escaped.")
549
550 (defconst yas--field-regexp
551 "${\\([0-9]+:\\)?\\([^}]*\\)}"
552 "A regexp to *almost* recognize a field.")
553
554 (defconst yas--multi-dollar-lisp-expression-regexp
555 "$+[ \t\n]*\\(([^)]*)\\)"
556 "A regexp to *almost* recognize a \"$(...)\" expression.")
557
558 (defconst yas--backquote-lisp-expression-regexp
559 "`\\([^`]*\\)`"
560 "A regexp to recognize a \"`lisp-expression`\" expression." )
561
562 (defconst yas--transform-mirror-regexp
563 "${\\(?:\\([0-9]+\\):\\)?$\\([ \t\n]*([^}]*\\)"
564 "A regexp to *almost* recognize a mirror with a transform.")
565
566 (defconst yas--simple-mirror-regexp
567 "$\\([0-9]+\\)"
568 "A regexp to recognize a simple mirror.")
569
570 (defvar yas--snippet-id-seed 0
571 "Contains the next id for a snippet.")
572
573 (defun yas--snippet-next-id ()
574 (let ((id yas--snippet-id-seed))
575 (incf yas--snippet-id-seed)
576 id))
577
578 \f
579 ;;; Minor mode stuff
580
581 ;; XXX: `last-buffer-undo-list' is somehow needed in Carbon Emacs for MacOSX
582 (defvar last-buffer-undo-list nil)
583
584 (defvar yas--minor-mode-menu nil
585 "Holds the YASnippet menu")
586
587 (defun yas--init-minor-keymap ()
588 (let ((map (make-sparse-keymap)))
589 (when yas-use-menu
590 (easy-menu-define yas--minor-mode-menu
591 map
592 "Menu used when `yas-minor-mode' is active."
593 '("YASnippet"
594 "----"
595 ["Expand trigger" yas-expand
596 :help "Possibly expand tab trigger before point"]
597 ["Insert at point..." yas-insert-snippet
598 :help "Prompt for an expandable snippet and expand it at point"]
599 ["New snippet..." yas-new-snippet
600 :help "Create a new snippet in an appropriate directory"]
601 ["Visit snippet file..." yas-visit-snippet-file
602 :help "Prompt for an expandable snippet and find its file"]
603 "----"
604 ("Snippet menu behaviour"
605 ["Visit snippets" (setq yas-visit-from-menu t)
606 :help "Visit snippets from the menu"
607 :active t :style radio :selected yas-visit-from-menu]
608 ["Expand snippets" (setq yas-visit-from-menu nil)
609 :help "Expand snippets from the menu"
610 :active t :style radio :selected (not yas-visit-from-menu)]
611 "----"
612 ["Show all known modes" (setq yas-use-menu 'full)
613 :help "Show one snippet submenu for each loaded table"
614 :active t :style radio :selected (eq yas-use-menu 'full)]
615 ["Abbreviate according to current mode" (setq yas-use-menu 'abbreviate)
616 :help "Show only snippet submenus for the current active modes"
617 :active t :style radio :selected (eq yas-use-menu 'abbreviate)])
618 ("Indenting"
619 ["Auto" (setq yas-indent-line 'auto)
620 :help "Indent each line of the snippet with `indent-according-to-mode'"
621 :active t :style radio :selected (eq yas-indent-line 'auto)]
622 ["Fixed" (setq yas-indent-line 'fixed)
623 :help "Indent the snippet to the current column"
624 :active t :style radio :selected (eq yas-indent-line 'fixed)]
625 ["None" (setq yas-indent-line 'none)
626 :help "Don't apply any particular snippet indentation after expansion"
627 :active t :style radio :selected (not (member yas-indent-line '(fixed auto)))]
628 "----"
629 ["Also auto indent first line" (setq yas-also-auto-indent-first-line
630 (not yas-also-auto-indent-first-line))
631 :help "When auto-indenting also, auto indent the first line menu"
632 :active (eq yas-indent-line 'auto)
633 :style toggle :selected yas-also-auto-indent-first-line]
634 )
635 ("Prompting method"
636 ["System X-widget" (setq yas-prompt-functions
637 (cons 'yas-x-prompt
638 (remove 'yas-x-prompt
639 yas-prompt-functions)))
640 :help "Use your windowing system's (gtk, mac, windows, etc...) default menu"
641 :active t :style radio :selected (eq (car yas-prompt-functions)
642 'yas-x-prompt)]
643 ["Dropdown-list" (setq yas-prompt-functions
644 (cons 'yas-dropdown-prompt
645 (remove 'yas-dropdown-prompt
646 yas-prompt-functions)))
647 :help "Use a special dropdown list"
648 :active t :style radio :selected (eq (car yas-prompt-functions)
649 'yas-dropdown-prompt)]
650 ["Ido" (setq yas-prompt-functions
651 (cons 'yas-ido-prompt
652 (remove 'yas-ido-prompt
653 yas-prompt-functions)))
654 :help "Use an ido-style minibuffer prompt"
655 :active t :style radio :selected (eq (car yas-prompt-functions)
656 'yas-ido-prompt)]
657 ["Completing read" (setq yas-prompt-functions
658 (cons 'yas-completing-prompt
659 (remove 'yas-completing-prompt
660 yas-prompt-functions)))
661 :help "Use a normal minibuffer prompt"
662 :active t :style radio :selected (eq (car yas-prompt-functions)
663 'yas-completing-prompt)]
664 )
665 ("Misc"
666 ["Wrap region in exit marker"
667 (setq yas-wrap-around-region
668 (not yas-wrap-around-region))
669 :help "If non-nil automatically wrap the selected text in the $0 snippet exit"
670 :style toggle :selected yas-wrap-around-region]
671 ["Allow stacked expansions "
672 (setq yas-triggers-in-field
673 (not yas-triggers-in-field))
674 :help "If non-nil allow snippets to be triggered inside other snippet fields"
675 :style toggle :selected yas-triggers-in-field]
676 ["Revive snippets on undo "
677 (setq yas-snippet-revival
678 (not yas-snippet-revival))
679 :help "If non-nil allow snippets to become active again after undo"
680 :style toggle :selected yas-snippet-revival]
681 ["Good grace "
682 (setq yas-good-grace
683 (not yas-good-grace))
684 :help "If non-nil don't raise errors in bad embedded eslip in snippets"
685 :style toggle :selected yas-good-grace]
686 )
687 "----"
688 ["Load snippets..." yas-load-directory
689 :help "Load snippets from a specific directory"]
690 ["Reload everything" yas-reload-all
691 :help "Cleanup stuff, reload snippets, rebuild menus"]
692 ["About" yas-about
693 :help "Display some information about YASsnippet"])))
694
695 ;; Now for the stuff that has direct keybindings
696 ;;
697 (define-key map "\C-c&\C-s" 'yas-insert-snippet)
698 (define-key map "\C-c&\C-n" 'yas-new-snippet)
699 (define-key map "\C-c&\C-v" 'yas-visit-snippet-file)
700 map))
701
702 (defvar yas-minor-mode-map (yas--init-minor-keymap)
703 "The keymap used when `yas-minor-mode' is active.")
704
705 (defun yas--trigger-key-reload (&optional unbind-key)
706 "Rebind `yas-expand' to the new value of `yas-trigger-key'.
707
708 With optional UNBIND-KEY, try to unbind that key from
709 `yas-minor-mode-map'."
710 (when (and unbind-key
711 (stringp unbind-key)
712 (not (string= unbind-key "")))
713 (define-key yas-minor-mode-map (read-kbd-macro unbind-key) nil))
714 (when (and yas-trigger-key
715 (stringp yas-trigger-key)
716 (not (string= yas-trigger-key "")))
717 (define-key yas-minor-mode-map (read-kbd-macro yas-trigger-key) 'yas-expand)))
718
719 (defvar yas--tables (make-hash-table)
720 "A hash table of mode symbols to `yas--table' objects.")
721
722 (defvar yas--parents (make-hash-table)
723 "A hash table of mode symbols do lists of direct parent mode symbols.
724
725 This list is populated when reading the \".yas-parents\" files
726 found when traversing snippet directories with
727 `yas-load-directory'.
728
729 There might be additionalal parenting information stored in the
730 `derived-mode-parent' property of some mode symbols, but that is
731 not recorded here.")
732
733 (defvar yas--direct-keymaps (list)
734 "Keymap alist supporting direct snippet keybindings.
735
736 This variable is is placed in `emulation-mode-map-alists'.
737
738 Its elements looks like (TABLE-NAME . KEYMAP). They're
739 instantiated on `yas-reload-all' but KEYMAP is added to only when
740 loading snippets. `yas--direct-TABLE-NAME' is then a variable set
741 buffer-locally when entering `yas-minor-mode'. KEYMAP binds all
742 defined direct keybindings to the command
743 `yas-expand-from-keymap' which then which snippet to expand.")
744
745 (defun yas-direct-keymaps-reload ()
746 "Force reload the direct keybinding for active snippet tables."
747 (interactive)
748 (setq yas--direct-keymaps nil)
749 (maphash #'(lambda (name table)
750 (push (cons (intern (format "yas--direct-%s" name))
751 (yas--table-direct-keymap table))
752 yas--direct-keymaps))
753 yas--tables))
754
755 (defun yas--modes-to-activate ()
756 "Compute list of mode symbols that are active for `yas-expand'
757 and friends."
758 (let ((modes-to-activate (list major-mode))
759 (mode major-mode))
760 (while (setq mode (get mode 'derived-mode-parent))
761 (push mode modes-to-activate))
762 (dolist (mode (yas-extra-modes))
763 (push mode modes-to-activate))
764 (remove-duplicates
765 (append modes-to-activate
766 (mapcan #'(lambda (mode)
767 (yas--all-parents mode))
768 modes-to-activate)))))
769
770 (defvar yas-minor-mode-hook nil
771 "Hook run when yas-minor-mode is turned on")
772
773 ;;;###autoload
774 (define-minor-mode yas-minor-mode
775 "Toggle YASnippet mode.
776
777 When YASnippet mode is enabled, the `yas-trigger-key' key expands
778 snippets of code depending on the major mode.
779
780 With no argument, this command toggles the mode.
781 positive prefix argument turns on the mode.
782 Negative prefix argument turns off the mode.
783
784 You can customize the key through `yas-trigger-key'.
785
786 Key bindings:
787 \\{yas-minor-mode-map}"
788 nil
789 ;; The indicator for the mode line.
790 " yas"
791 :group 'yasnippet
792 (cond (yas-minor-mode
793 ;; Reload the trigger key
794 ;;
795 (yas--trigger-key-reload)
796 ;; Install the direct keymaps in `emulation-mode-map-alists'
797 ;; (we use `add-hook' even though it's not technically a hook,
798 ;; but it works). Then define variables named after modes to
799 ;; index `yas--direct-keymaps'.
800 ;;
801 ;; Also install the post-command-hook.
802 ;;
803 (add-hook 'emulation-mode-map-alists 'yas--direct-keymaps)
804 (add-hook 'post-command-hook 'yas--post-command-handler nil t)
805 ;; Set the `yas--direct-%s' vars for direct keymap expansion
806 ;;
807 (dolist (mode (yas--modes-to-activate))
808 (let ((name (intern (format "yas--direct-%s" mode))))
809 (set-default name nil)
810 (set (make-local-variable name) t)))
811 ;; Perform JIT loads
812 ;;
813 (yas--load-pending-jits))
814 (t
815 ;; Uninstall the direct keymaps and the post-command hook
816 ;;
817 (remove-hook 'post-command-hook 'yas--post-command-handler t)
818 (remove-hook 'emulation-mode-map-alists 'yas--direct-keymaps))))
819
820 (defvar yas--dont-activate '(minibufferp)
821 "If non-nil don't let `yas-minor-mode-on' active yas for this buffer.
822
823 If a function, then its result is used.
824
825 If a list of functions, then all functions must return nil to
826 activate yas for this buffer.
827
828 `yas-minor-mode-on' is usually called by `yas-global-mode' so
829 this effectively lets you define exceptions to the \"global\"
830 behaviour. Can also be a function of zero arguments.")
831 (make-variable-buffer-local 'yas--dont-activate)
832
833 (defun yas-minor-mode-on ()
834 "Turn on YASnippet minor mode.
835
836 Do this unless `yas--dont-activate' is truish "
837 (interactive)
838 (unless (cond ((functionp yas--dont-activate)
839 (funcall yas--dont-activate))
840 ((consp yas--dont-activate)
841 (some #'funcall yas--dont-activate))
842 (yas--dont-activate))
843 ;; Load all snippets definitions unless we still don't have a
844 ;; root-directory or some snippets have already been loaded.
845 ;;
846 (yas-minor-mode 1)))
847
848 ;;;###autoload
849 (define-globalized-minor-mode yas-global-mode yas-minor-mode yas-minor-mode-on
850 :group 'yasnippet
851 :require 'yasnippet)
852
853 (defun yas--global-mode-reload-with-jit-maybe ()
854 (when yas-global-mode (yas-reload-all)))
855
856 (add-hook 'yas-global-mode-hook 'yas--global-mode-reload-with-jit-maybe)
857
858 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
859 ;; Major mode stuff
860 ;;
861 (defvar yas--font-lock-keywords
862 (append '(("^#.*$" . font-lock-comment-face))
863 lisp-font-lock-keywords
864 lisp-font-lock-keywords-1
865 lisp-font-lock-keywords-2
866 '(("$\\([0-9]+\\)"
867 (0 font-lock-keyword-face)
868 (1 font-lock-string-face t))
869 ("${\\([0-9]+\\):?"
870 (0 font-lock-keyword-face)
871 (1 font-lock-warning-face t))
872 ("${" font-lock-keyword-face)
873 ("$[0-9]+?" font-lock-preprocessor-face)
874 ("\\(\\$(\\)" 1 font-lock-preprocessor-face)
875 ("}"
876 (0 font-lock-keyword-face)))))
877
878 (defun yas--init-major-keymap ()
879 (let ((map (make-sparse-keymap)))
880 (easy-menu-define nil
881 map
882 "Menu used when snippet-mode is active."
883 (cons "Snippet"
884 (mapcar #'(lambda (ent)
885 (when (third ent)
886 (define-key map (third ent) (second ent)))
887 (vector (first ent) (second ent) t))
888 (list
889 (list "Load this snippet" 'yas-load-snippet-buffer "\C-c\C-c")
890 (list "Try out this snippet" 'yas-tryout-snippet "\C-c\C-t")))))
891 map))
892
893 (defvar snippet-mode-map
894 (yas--init-major-keymap)
895 "The keymap used when `snippet-mode' is active")
896
897
898 (define-derived-mode snippet-mode text-mode "Snippet"
899 "A mode for editing yasnippets"
900 (setq font-lock-defaults '(yas--font-lock-keywords))
901 (set (make-local-variable 'require-final-newline) nil)
902 (set (make-local-variable 'comment-start) "#")
903 (set (make-local-variable 'comment-start-skip) "#+[\t ]*"))
904
905
906 \f
907 ;;; Internal structs for template management
908
909 (defstruct (yas--template (:constructor yas--make-blank-template))
910 "A template for a snippet."
911 key
912 content
913 name
914 condition
915 expand-env
916 file
917 keybinding
918 uuid
919 menu-binding-pair
920 group ;; as dictated by the #group: directive or .yas-make-groups
921 perm-group ;; as dictated by `yas-define-menu'
922 table
923 )
924
925 (defun yas--populate-template (template &rest args)
926 "Helper function to populate a template with properties"
927 (let (p v)
928 (while args
929 (aset template
930 (position (intern (substring (symbol-name (car args)) 1))
931 (mapcar #'car (get 'yas--template 'cl-struct-slots)))
932 (second args))
933 (setq args (cddr args)))
934 template))
935
936 (defstruct (yas--table (:constructor yas--make-snippet-table (name)))
937 "A table to store snippets for a particular mode.
938
939 Has the following fields:
940
941 `yas--table-name'
942
943 A symbol name normally corresponding to a major mode, but can
944 also be a pseudo major-mode to be referenced in
945 `yas-extra-modes', for example.
946
947 `yas--table-hash'
948
949 A hash table (KEY . NAMEHASH), known as the \"keyhash\". KEY is
950 a string or a vector, where the former is the snippet's trigger
951 and the latter means it's a direct keybinding. NAMEHASH is yet
952 another hash of (NAME . TEMPLATE) where NAME is the snippet's
953 name and TEMPLATE is a `yas--template' object.
954
955 `yas--table-direct-keymap'
956
957 A keymap for the snippets in this table that have direct
958 keybindings. This is kept in sync with the keyhash, i.e., all
959 the elements of the keyhash that are vectors appear here as
960 bindings to `yas-expand-from-keymap'.
961
962 `yas--table-uuidhash'
963
964 A hash table mapping snippets uuid's to the same `yas--template'
965 objects. A snippet uuid defaults to the snippet's name.
966 "
967 name
968 (hash (make-hash-table :test 'equal))
969 (uuidhash (make-hash-table :test 'equal))
970 (parents nil)
971 (direct-keymap (make-sparse-keymap)))
972
973 (defun yas--get-template-by-uuid (mode uuid)
974 "Find the snippet template in MODE by its UUID."
975 (let* ((table (gethash mode yas--tables mode)))
976 (when table
977 (gethash uuid (yas--table-uuidhash table)))))
978
979 ;; Apropos storing/updating in TABLE, this works in two steps:
980 ;;
981 ;; 1. `yas--remove-template-by-uuid' removes any
982 ;; keyhash-namehash-template mappings from TABLE, grabing the
983 ;; snippet by its uuid. Also removes mappings from TABLE's
984 ;; `yas--table-direct-keymap' (FIXME: and should probably take care
985 ;; of potentially stale menu bindings right?.)
986 ;;
987 ;; 2. `yas--add-template' adds this all over again.
988 ;;
989 ;; Create a new or add to an existing keyhash-namehash mapping.
990 ;;
991 ;; For reference on understanding this, consider three snippet
992 ;; definitions:
993 ;;
994 ;; A: # name: The Foo
995 ;; # key: foo
996 ;; # binding: C-c M-l
997 ;;
998 ;; B: # name: Mrs Foo
999 ;; # key: foo
1000 ;;
1001 ;; C: # name: The Bar
1002 ;; # binding: C-c M-l
1003 ;;
1004 ;; D: # name: Baz
1005 ;; # key: baz
1006 ;;
1007 ;; keyhash namehashes(3) yas--template structs(4)
1008 ;; -----------------------------------------------------
1009 ;; __________
1010 ;; / \
1011 ;; "foo" ---> "The Foo" ---> [yas--template A] |
1012 ;; "Mrs Foo" ---> [yas--template B] |
1013 ;; |
1014 ;; [C-c M-l] ---> "The Foo" -------------------------/
1015 ;; "The Bar" ---> [yas--template C]
1016 ;;
1017 ;; "baz" ---> "Baz" ---> [yas--template D]
1018 ;;
1019 ;; Additionally, since uuid defaults to the name, we have a
1020 ;; `yas--table-uuidhash' for TABLE
1021 ;;
1022 ;; uuidhash yas--template structs
1023 ;; -------------------------------
1024 ;; "The Foo" ---> [yas--template A]
1025 ;; "Mrs Foo" ---> [yas--template B]
1026 ;; "The Bar" ---> [yas--template C]
1027 ;; "Baz" ---> [yas--template D]
1028 ;;
1029 ;; FIXME: the more I look at this data-structure the more I think I'm
1030 ;; stupid. There has to be an easier way (but beware lots of code
1031 ;; depends on this).
1032 ;;
1033 (defun yas--remove-template-by-uuid (table uuid)
1034 "Remove from TABLE a template identified by UUID."
1035 (let ((template (gethash uuid (yas--table-uuidhash table))))
1036 (when template
1037 (let* ((name (yas--template-name template))
1038 (empty-keys nil))
1039 ;; Remove the name from each of the targeted namehashes
1040 ;;
1041 (maphash #'(lambda (k v)
1042 (let ((template (gethash name v)))
1043 (when (and template
1044 (eq uuid (yas--template-uuid template)))
1045 (remhash name v)
1046 (when (zerop (hash-table-count v))
1047 (push k empty-keys)))))
1048 (yas--table-hash table))
1049 ;; Remove the namehash themselves if they've become empty
1050 ;;
1051 (dolist (key empty-keys)
1052 (when (vectorp key)
1053 (define-key (yas--table-direct-keymap table) key nil))
1054 (remhash key (yas--table-hash table)))
1055
1056 ;; Finally, remove the uuid from the uuidhash
1057 ;;
1058 (remhash uuid (yas--table-uuidhash table))))))
1059
1060 (defun yas--add-template (table template)
1061 "Store in TABLE the snippet template TEMPLATE.
1062
1063 KEY can be a string (trigger key) of a vector (direct
1064 keybinding)."
1065 (let ((name (yas--template-name template))
1066 (key (yas--template-key template))
1067 (keybinding (yas--template-keybinding template))
1068 (menu-binding-pair (yas--template-menu-binding-pair-get-create template)))
1069 (dolist (k (remove nil (list key keybinding)))
1070 (puthash name
1071 template
1072 (or (gethash k
1073 (yas--table-hash table))
1074 (puthash k
1075 (make-hash-table :test 'equal)
1076 (yas--table-hash table))))
1077 (when (vectorp k)
1078 (define-key (yas--table-direct-keymap table) k 'yas-expand-from-keymap)))
1079
1080 ;; Update TABLE's `yas--table-uuidhash'
1081 (puthash (yas--template-uuid template)
1082 template
1083 (yas--table-uuidhash table))))
1084
1085 (defun yas--update-template (table template)
1086 "Add or update TEMPLATE in TABLE.
1087
1088 Also takes care of adding and updating to the associated menu."
1089 ;; Remove from table by uuid
1090 ;;
1091 (yas--remove-template-by-uuid table (yas--template-uuid template))
1092 ;; Add to table again
1093 ;;
1094 (yas--add-template table template)
1095 ;; Take care of the menu
1096 ;;
1097 (when yas-use-menu
1098 (yas--update-template-menu table template)))
1099
1100 (defun yas--update-template-menu (table template)
1101 "Update every menu-related for TEMPLATE"
1102 (let ((menu-binding-pair (yas--template-menu-binding-pair-get-create template))
1103 (key (yas--template-key template))
1104 (keybinding (yas--template-keybinding template)))
1105 ;; The snippet might have changed name or keys, so update
1106 ;; user-visible strings
1107 ;;
1108 (unless (eq (cdr menu-binding-pair) :none)
1109 ;; the menu item name
1110 ;;
1111 (setf (cadar menu-binding-pair) (yas--template-name template))
1112 ;; the :keys information (also visible to the user)
1113 (setf (getf (cdr (car menu-binding-pair)) :keys)
1114 (or (and keybinding (key-description keybinding))
1115 (and key (concat key yas-trigger-symbol))))))
1116 (unless (yas--template-menu-managed-by-yas-define-menu template)
1117 (let ((menu-keymap
1118 (yas--menu-keymap-get-create (yas--table-mode table)
1119 (mapcar #'yas--table-mode
1120 (yas--table-parents table))))
1121 (group (yas--template-group template)))
1122 ;; Remove from menu keymap
1123 ;;
1124 (assert menu-keymap)
1125 (yas--delete-from-keymap menu-keymap (yas--template-uuid template))
1126
1127 ;; Add necessary subgroups as necessary.
1128 ;;
1129 (dolist (subgroup group)
1130 (let ((subgroup-keymap (lookup-key menu-keymap (vector (make-symbol subgroup)))))
1131 (unless (and subgroup-keymap
1132 (keymapp subgroup-keymap))
1133 (setq subgroup-keymap (make-sparse-keymap))
1134 (define-key menu-keymap (vector (make-symbol subgroup))
1135 `(menu-item ,subgroup ,subgroup-keymap)))
1136 (setq menu-keymap subgroup-keymap)))
1137
1138 ;; Add this entry to the keymap
1139 ;;
1140 (define-key menu-keymap
1141 (vector (make-symbol (yas--template-uuid template)))
1142 (car (yas--template-menu-binding-pair template))))))
1143
1144 (defun yas--namehash-templates-alist (namehash)
1145 (let (alist)
1146 (maphash #'(lambda (k v)
1147 (push (cons k v) alist))
1148 namehash)
1149 alist))
1150
1151 (defun yas--fetch (table key)
1152 "Fetch templates in TABLE by KEY.
1153
1154 Return a list of cons (NAME . TEMPLATE) where NAME is a
1155 string and TEMPLATE is a `yas--template' structure."
1156 (let* ((keyhash (yas--table-hash table))
1157 (namehash (and keyhash (gethash key keyhash))))
1158 (when namehash
1159 (yas--filter-templates-by-condition (yas--namehash-templates-alist namehash)))))
1160
1161 \f
1162 ;;; Filtering/condition logic
1163
1164 (defun yas--eval-condition (condition)
1165 (condition-case err
1166 (save-excursion
1167 (save-restriction
1168 (save-match-data
1169 (eval condition))))
1170 (error (progn
1171 (yas--message 1 "Error in condition evaluation: %s" (error-message-string err))
1172 nil))))
1173
1174
1175 (defun yas--filter-templates-by-condition (templates)
1176 "Filter the templates using the applicable condition.
1177
1178 TEMPLATES is a list of cons (NAME . TEMPLATE) where NAME is a
1179 string and TEMPLATE is a `yas--template' structure.
1180
1181 This function implements the rules described in
1182 `yas-buffer-local-condition'. See that variables documentation."
1183 (let ((requirement (yas--require-template-specific-condition-p)))
1184 (if (eq requirement 'always)
1185 templates
1186 (remove-if-not #'(lambda (pair)
1187 (yas--template-can-expand-p
1188 (yas--template-condition (cdr pair)) requirement))
1189 templates))))
1190
1191 (defun yas--require-template-specific-condition-p ()
1192 "Decides if this buffer requests/requires snippet-specific
1193 conditions to filter out potential expansions."
1194 (if (eq 'always yas-buffer-local-condition)
1195 'always
1196 (let ((local-condition (or (and (consp yas-buffer-local-condition)
1197 (yas--eval-condition yas-buffer-local-condition))
1198 yas-buffer-local-condition)))
1199 (when local-condition
1200 (if (eq local-condition t)
1201 t
1202 (and (consp local-condition)
1203 (eq 'require-snippet-condition (car local-condition))
1204 (symbolp (cdr local-condition))
1205 (cdr local-condition)))))))
1206
1207 (defun yas--template-can-expand-p (condition requirement)
1208 "Evaluates CONDITION and REQUIREMENT and returns a boolean"
1209 (let* ((result (or (null condition)
1210 (yas--eval-condition condition))))
1211 (cond ((eq requirement t)
1212 result)
1213 (t
1214 (eq requirement result)))))
1215
1216 (defun yas--all-parents (mode)
1217 "Returns a list of all parent modes of MODE"
1218 (let ((parents (gethash mode yas--parents)))
1219 (append parents
1220 (mapcan #'yas--all-parents parents))))
1221
1222 (defun yas--table-templates (table)
1223 (when table
1224 (let ((acc (list)))
1225 (maphash #'(lambda (key namehash)
1226 (maphash #'(lambda (name template)
1227 (push (cons name template) acc))
1228 namehash))
1229 (yas--table-hash table))
1230 (yas--filter-templates-by-condition acc))))
1231
1232 (defun yas--current-key ()
1233 "Get the key under current position. A key is used to find
1234 the template of a snippet in the current snippet-table."
1235 (let ((start (point))
1236 (end (point))
1237 (syntaxes yas-key-syntaxes)
1238 syntax
1239 done
1240 templates)
1241 (while (and (not done) syntaxes)
1242 (setq syntax (car syntaxes))
1243 (setq syntaxes (cdr syntaxes))
1244 (save-excursion
1245 (skip-syntax-backward syntax)
1246 (setq start (point)))
1247 (setq templates
1248 (mapcan #'(lambda (table)
1249 (yas--fetch table (buffer-substring-no-properties start end)))
1250 (yas--get-snippet-tables)))
1251 (if templates
1252 (setq done t)
1253 (setq start end)))
1254 (list templates
1255 start
1256 end)))
1257
1258
1259 (defun yas--table-all-keys (table)
1260 "Get trigger keys of all active snippets in TABLE"
1261 (let ((acc))
1262 (maphash #'(lambda (key namehash)
1263 (when (yas--filter-templates-by-condition (yas--namehash-templates-alist namehash))
1264 (push key acc)))
1265 (yas--table-hash table))
1266 acc))
1267
1268 (defun yas--table-mode (table)
1269 (intern (yas--table-name table)))
1270
1271 \f
1272 ;;; Internal functions:
1273
1274 (defun yas--real-mode? (mode)
1275 "Try to find out if MODE is a real mode. The MODE bound to
1276 a function (like `c-mode') is considered real mode. Other well
1277 known mode like `ruby-mode' which is not part of Emacs might
1278 not bound to a function until it is loaded. So yasnippet keeps
1279 a list of modes like this to help the judgement."
1280 (or (fboundp mode)
1281 (find mode yas--known-modes)))
1282
1283 (defun yas--eval-lisp (form)
1284 "Evaluate FORM and convert the result to string."
1285 (let ((retval (catch 'yas--exception
1286 (condition-case err
1287 (save-excursion
1288 (save-restriction
1289 (save-match-data
1290 (widen)
1291 (let ((result (eval form)))
1292 (when result
1293 (format "%s" result))))))
1294 (error (if yas-good-grace
1295 (yas--format "elisp error! %s" (error-message-string err))
1296 (error (yas--format "elisp error: %s"
1297 (error-message-string err)))))))))
1298 (when (and (consp retval)
1299 (eq 'yas--exception (car retval)))
1300 (error (cdr retval)))
1301 retval))
1302
1303 (defun yas--eval-lisp-no-saves (form)
1304 (condition-case err
1305 (eval form)
1306 (error (if yas-good-grace
1307 (yas--format "elisp error! %s" (error-message-string err))
1308 (error (yas--format "elisp error: %s"
1309 (error-message-string err)))))))
1310
1311 (defun yas--read-lisp (string &optional nil-on-error)
1312 "Read STRING as a elisp expression and return it.
1313
1314 In case STRING in an invalid expression and NIL-ON-ERROR is nil,
1315 return an expression that when evaluated will issue an error."
1316 (condition-case err
1317 (read string)
1318 (error (and (not nil-on-error)
1319 `(error (error-message-string ,err))))))
1320
1321 (defun yas--read-keybinding (keybinding)
1322 "Read KEYBINDING as a snippet keybinding, return a vector."
1323 (when (and keybinding
1324 (not (string-match "keybinding" keybinding)))
1325 (condition-case err
1326 (let ((res (or (and (string-match "^\\[.*\\]$" keybinding)
1327 (read keybinding))
1328 (read-kbd-macro keybinding 'need-vector))))
1329 res)
1330 (error
1331 (yas--message 3 "warning: keybinding \"%s\" invalid since %s."
1332 keybinding (error-message-string err))
1333 nil))))
1334
1335 (defvar yas-extra-modes nil
1336 "If non-nil, also lookup snippets for this/these modes.
1337
1338 Can be a symbol or a list of symbols.
1339
1340 This variable probably makes more sense as buffer-local, so
1341 ensure your use `make-local-variable' when you set it.")
1342 (defun yas-extra-modes ()
1343 (if (listp yas-extra-modes) yas-extra-modes (list yas-extra-modes)))
1344 (defvaralias 'yas/mode-symbol 'yas-extra-modes)
1345
1346 (defun yas--table-get-create (mode)
1347 "Get or create the snippet table corresponding to MODE."
1348 (let ((table (gethash mode
1349 yas--tables)))
1350 (unless table
1351 (setq table (yas--make-snippet-table (symbol-name mode)))
1352 (puthash mode table yas--tables)
1353 (push (cons (intern (format "yas--direct-%s" mode))
1354 (yas--table-direct-keymap table))
1355 yas--direct-keymaps))
1356 table))
1357
1358 (defun yas--get-snippet-tables ()
1359 "Get snippet tables for current buffer.
1360
1361 Return a list of `yas--table' objects. The list of modes to
1362 consider is returned by `yas--modes-to-activate'"
1363 (remove nil
1364 (mapcar #'(lambda (mode-name)
1365 (gethash mode-name yas--tables))
1366 (yas--modes-to-activate))))
1367
1368 (defun yas--menu-keymap-get-create (mode &optional parents)
1369 "Get or create the menu keymap for MODE and its PARENTS.
1370
1371 This may very well create a plethora of menu keymaps and arrange
1372 them all in `yas--menu-table'"
1373 (let* ((menu-keymap (or (gethash mode yas--menu-table)
1374 (puthash mode (make-sparse-keymap) yas--menu-table))))
1375 (mapc #'yas--menu-keymap-get-create parents)
1376 (define-key yas--minor-mode-menu (vector mode)
1377 `(menu-item ,(symbol-name mode) ,menu-keymap
1378 :visible (yas--show-menu-p ',mode)))
1379 menu-keymap))
1380
1381 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1382 ;;; Template-related and snippet loading functions
1383
1384 (defun yas--parse-template (&optional file)
1385 "Parse the template in the current buffer.
1386
1387 Optional FILE is the absolute file name of the file being
1388 parsed.
1389
1390 Optional GROUP is the group where the template is to go,
1391 otherwise we attempt to calculate it from FILE.
1392
1393 Return a snippet-definition, i.e. a list
1394
1395 (KEY TEMPLATE NAME CONDITION GROUP VARS FILE KEYBINDING UUID)
1396
1397 If the buffer contains a line of \"# --\" then the contents above
1398 this line are ignored. Directives can set most of these with the syntax:
1399
1400 # directive-name : directive-value
1401
1402 Here's a list of currently recognized directives:
1403
1404 * type
1405 * name
1406 * contributor
1407 * condition
1408 * group
1409 * key
1410 * expand-env
1411 * binding
1412 * uuid"
1413 (goto-char (point-min))
1414 (let* ((type 'snippet)
1415 (name (and file
1416 (file-name-nondirectory file)))
1417 (key nil)
1418 template
1419 bound
1420 condition
1421 (group (and file
1422 (yas--calculate-group file)))
1423 expand-env
1424 binding
1425 uuid)
1426 (if (re-search-forward "^# --\n" nil t)
1427 (progn (setq template
1428 (buffer-substring-no-properties (point)
1429 (point-max)))
1430 (setq bound (point))
1431 (goto-char (point-min))
1432 (while (re-search-forward "^# *\\([^ ]+?\\) *: *\\(.*\\)$" bound t)
1433 (when (string= "uuid" (match-string-no-properties 1))
1434 (setq uuid (match-string-no-properties 2)))
1435 (when (string= "type" (match-string-no-properties 1))
1436 (setq type (if (string= "command" (match-string-no-properties 2))
1437 'command
1438 'snippet)))
1439 (when (string= "key" (match-string-no-properties 1))
1440 (setq key (match-string-no-properties 2)))
1441 (when (string= "name" (match-string-no-properties 1))
1442 (setq name (match-string-no-properties 2)))
1443 (when (string= "condition" (match-string-no-properties 1))
1444 (setq condition (yas--read-lisp (match-string-no-properties 2))))
1445 (when (string= "group" (match-string-no-properties 1))
1446 (setq group (match-string-no-properties 2)))
1447 (when (string= "expand-env" (match-string-no-properties 1))
1448 (setq expand-env (yas--read-lisp (match-string-no-properties 2)
1449 'nil-on-error)))
1450 (when (string= "binding" (match-string-no-properties 1))
1451 (setq binding (match-string-no-properties 2)))))
1452 (setq template
1453 (buffer-substring-no-properties (point-min) (point-max))))
1454 (unless (or key binding)
1455 (setq key (and file (file-name-nondirectory file))))
1456 (when (eq type 'command)
1457 (setq template (yas--read-lisp (concat "(progn" template ")"))))
1458 (when group
1459 (setq group (split-string group "\\.")))
1460 (list key template name condition group expand-env file binding uuid)))
1461
1462 (defun yas--calculate-group (file)
1463 "Calculate the group for snippet file path FILE."
1464 (let* ((dominating-dir (locate-dominating-file file
1465 ".yas-make-groups"))
1466 (extra-path (and dominating-dir
1467 (replace-regexp-in-string (concat "^"
1468 (expand-file-name dominating-dir))
1469 ""
1470 (expand-file-name file))))
1471 (extra-dir (and extra-path
1472 (file-name-directory extra-path)))
1473 (group (and extra-dir
1474 (replace-regexp-in-string "/"
1475 "."
1476 (directory-file-name extra-dir)))))
1477 group))
1478
1479 (defun yas--subdirs (directory &optional filep)
1480 "Return subdirs or files of DIRECTORY according to FILEP."
1481 (remove-if (lambda (file)
1482 (or (string-match "^\\."
1483 (file-name-nondirectory file))
1484 (string-match "^#.*#$"
1485 (file-name-nondirectory file))
1486 (string-match "~$"
1487 (file-name-nondirectory file))
1488 (if filep
1489 (file-directory-p file)
1490 (not (file-directory-p file)))))
1491 (directory-files directory t)))
1492
1493 (defun yas--make-menu-binding (template)
1494 (let ((mode (yas--table-mode (yas--template-table template))))
1495 `(lambda () (interactive) (yas--expand-or-visit-from-menu ',mode ,(yas--template-uuid template)))))
1496
1497 (defun yas--expand-or-visit-from-menu (mode uuid)
1498 (let* ((table (yas--table-get-create mode))
1499 (yas--current-template (and table
1500 (gethash uuid (yas--table-uuidhash table)))))
1501 (when yas--current-template
1502 (if yas-visit-from-menu
1503 (yas--visit-snippet-file-1 yas--current-template)
1504 (let ((where (if (region-active-p)
1505 (cons (region-beginning) (region-end))
1506 (cons (point) (point)))))
1507 (yas-expand-snippet (yas--template-content yas--current-template)
1508 (car where)
1509 (cdr where)
1510 (yas--template-expand-env yas--current-template)))))))
1511
1512 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1513 ;; Popping up for keys and templates
1514 ;;
1515 (defvar yas--x-pretty-prompt-templates nil
1516 "If non-nil, attempt to prompt for templates like TextMate.")
1517
1518
1519 (defun yas--prompt-for-template (templates &optional prompt)
1520 "Interactively choose a template from the list TEMPLATES.
1521
1522 TEMPLATES is a list of `yas--template'."
1523 (when templates
1524 (setq templates
1525 (sort templates #'(lambda (t1 t2)
1526 (< (length (yas--template-name t1))
1527 (length (yas--template-name t2))))))
1528 (if yas--x-pretty-prompt-templates
1529 (yas--x-pretty-prompt-templates "Choose a snippet" templates)
1530 (some #'(lambda (fn)
1531 (funcall fn (or prompt "Choose a snippet: ")
1532 templates
1533 #'yas--template-name))
1534 yas-prompt-functions))))
1535
1536 (defun yas--prompt-for-keys (keys &optional prompt)
1537 "Interactively choose a template key from the list KEYS."
1538 (when keys
1539 (some #'(lambda (fn)
1540 (funcall fn (or prompt "Choose a snippet key: ") keys))
1541 yas-prompt-functions)))
1542
1543 (defun yas--prompt-for-table (tables &optional prompt)
1544 (when tables
1545 (some #'(lambda (fn)
1546 (funcall fn (or prompt "Choose a snippet table: ")
1547 tables
1548 #'yas--table-name))
1549 yas-prompt-functions)))
1550
1551 (defun yas-x-prompt (prompt choices &optional display-fn)
1552 "Display choices in a x-window prompt."
1553 ;; FIXME: HACK: if we notice that one of the objects in choices is
1554 ;; actually a `yas--template', defer to `yas--x-prompt-pretty-templates'
1555 ;;
1556 ;; This would be better implemented by passing CHOICES as a
1557 ;; strucutred tree rather than a list. Modifications would go as far
1558 ;; up as `yas--all-templates' I think.
1559 ;;
1560 (when (and window-system choices)
1561 (let ((chosen
1562 (let (menu d) ;; d for display
1563 (dolist (c choices)
1564 (setq d (or (and display-fn (funcall display-fn c))
1565 c))
1566 (cond ((stringp d)
1567 (push (cons (concat " " d) c) menu))
1568 ((listp d)
1569 (push (car d) menu))))
1570 (setq menu (list prompt (push "title" menu)))
1571 (x-popup-menu (if (fboundp 'posn-at-point)
1572 (let ((x-y (posn-x-y (posn-at-point (point)))))
1573 (list (list (+ (car x-y) 10)
1574 (+ (cdr x-y) 20))
1575 (selected-window)))
1576 t)
1577 menu))))
1578 (or chosen
1579 (keyboard-quit)))))
1580
1581 (defun yas--x-pretty-prompt-templates (prompt templates)
1582 "Display TEMPLATES, grouping neatly by table name."
1583 (let ((organized (make-hash-table :test #'equal))
1584 menu
1585 more-than-one-table
1586 prefix)
1587 (dolist (tl templates)
1588 (puthash (yas--template-table tl)
1589 (cons tl
1590 (gethash (yas--template-table tl) organized))
1591 organized))
1592 (setq more-than-one-table (> (hash-table-count organized) 1))
1593 (setq prefix (if more-than-one-table
1594 " " ""))
1595 (if more-than-one-table
1596 (maphash #'(lambda (table templates)
1597 (push (yas--table-name table) menu)
1598 (dolist (tl templates)
1599 (push (cons (concat prefix (yas--template-name tl)) tl) menu))) organized)
1600 (setq menu (mapcar #'(lambda (tl) (cons (concat prefix (yas--template-name tl)) tl)) templates)))
1601
1602 (setq menu (nreverse menu))
1603 (or (x-popup-menu (if (fboundp 'posn-at-point)
1604 (let ((x-y (posn-x-y (posn-at-point (point)))))
1605 (list (list (+ (car x-y) 10)
1606 (+ (cdr x-y) 20))
1607 (selected-window)))
1608 t)
1609 (list prompt (push "title" menu)))
1610 (keyboard-quit))))
1611
1612 (defun yas-ido-prompt (prompt choices &optional display-fn)
1613 (when (and (fboundp 'ido-completing-read)
1614 (or (>= emacs-major-version 24)
1615 ido-mode))
1616 (yas-completing-prompt prompt choices display-fn #'ido-completing-read)))
1617
1618 (eval-when-compile (require 'dropdown-list nil t))
1619 (defun yas-dropdown-prompt (prompt choices &optional display-fn)
1620 (when (featurep 'dropdown-list)
1621 (let (formatted-choices
1622 filtered-choices
1623 d
1624 n)
1625 (dolist (choice choices)
1626 (setq d (or (and display-fn (funcall display-fn choice))
1627 choice))
1628 (when (stringp d)
1629 (push d formatted-choices)
1630 (push choice filtered-choices)))
1631
1632 (setq n (and formatted-choices (dropdown-list formatted-choices)))
1633 (if n
1634 (nth n filtered-choices)
1635 (keyboard-quit)))))
1636
1637 (defun yas-completing-prompt (prompt choices &optional display-fn completion-fn)
1638 (let (formatted-choices
1639 filtered-choices
1640 chosen
1641 d
1642 (completion-fn (or completion-fn
1643 #'completing-read)))
1644 (dolist (choice choices)
1645 (setq d (or (and display-fn (funcall display-fn choice))
1646 choice))
1647 (when (stringp d)
1648 (push d formatted-choices)
1649 (push choice filtered-choices)))
1650 (setq chosen (and formatted-choices
1651 (funcall completion-fn prompt
1652 formatted-choices
1653 nil
1654 'require-match
1655 nil
1656 nil)))
1657 (let ((position (or (and chosen
1658 (position chosen formatted-choices :test #'string=))
1659 0)))
1660 (nth position filtered-choices))))
1661
1662 (defun yas-no-prompt (prompt choices &optional display-fn)
1663 (first choices))
1664
1665 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1666 ;; Loading snippets from files
1667 ;;
1668 (defun yas--load-yas-setup-file (file)
1669 (load file 'noerror))
1670
1671 (defun yas-load-directory (top-level-dir &optional use-jit)
1672 "Load snippets in directory hierarchy TOP-LEVEL-DIR.
1673
1674 Below TOP-LEVEL-DIR each directory should be a mode name.
1675
1676 Optional USE-JIT use jit-loading of snippets."
1677 (interactive "DSelect the root directory: ")
1678 (unless yas-snippet-dirs
1679 (setq yas-snippet-dirs top-level-dir))
1680 (dolist (dir (yas--subdirs top-level-dir))
1681 (let* ((major-mode-and-parents (yas--compute-major-mode-and-parents
1682 (concat dir "/dummy")))
1683 (mode-sym (car major-mode-and-parents))
1684 (parents (cdr major-mode-and-parents)))
1685 ;; Attention: The parents and the menus are already defined
1686 ;; here, even if the snippets are later jit-loaded.
1687 ;;
1688 ;; * We need to know the parents at this point since entering a
1689 ;; given mode should jit load for its parents
1690 ;; immediately. This could be reviewed, the parents could be
1691 ;; discovered just-in-time-as well
1692 ;;
1693 ;; * We need to create the menus here to support the `full'
1694 ;; option to `yas-use-menu' (all known snippet menus are shown to the user)
1695 ;;
1696 (yas--define-parents mode-sym parents)
1697 (yas--menu-keymap-get-create mode-sym)
1698 (let ((form `(yas--load-directory-1 ,dir
1699 ',mode-sym
1700 ',parents)))
1701 (if use-jit
1702 (yas--schedule-jit mode-sym form)
1703 (eval form)))))
1704 (when (interactive-p)
1705 (yas--message 3 "Loaded snippets from %s." top-level-dir)))
1706
1707 (defun yas--load-directory-1 (directory mode-sym parents &optional no-compiled-snippets)
1708 "Recursively load snippet templates from DIRECTORY."
1709 (unless (file-exists-p (concat directory "/" ".yas-skip"))
1710 (if (and (not no-compiled-snippets)
1711 (progn (yas--message 2 "Loading compiled snippets from %s" directory) t)
1712 (load (expand-file-name ".yas-compiled-snippets" directory) 'noerror (<= yas-verbosity 3)))
1713 (yas--message 2 "Loading snippet files from %s" directory)
1714 (yas--load-directory-2 directory mode-sym))))
1715
1716 (defun yas--load-directory-2 (directory mode-sym)
1717 ;; Load .yas-setup.el files wherever we find them
1718 ;;
1719 (yas--load-yas-setup-file (expand-file-name ".yas-setup" directory))
1720 (let* ((default-directory directory)
1721 (snippet-defs nil))
1722 ;; load the snippet files
1723 ;;
1724 (with-temp-buffer
1725 (dolist (file (yas--subdirs directory 'no-subdirs-just-files))
1726 (when (file-readable-p file)
1727 (insert-file-contents file nil nil nil t)
1728 (push (yas--parse-template file)
1729 snippet-defs))))
1730 (when snippet-defs
1731 (yas-define-snippets mode-sym
1732 snippet-defs))
1733 ;; now recurse to a lower level
1734 ;;
1735 (dolist (subdir (yas--subdirs directory))
1736 (yas--load-directory-2 subdir
1737 mode-sym))))
1738
1739 (defun yas--load-snippet-dirs (&optional nojit)
1740 "Reload the directories listed in `yas-snippet-dirs' or
1741 prompt the user to select one."
1742 (let (errors)
1743 (if yas-snippet-dirs
1744 (dolist (directory (reverse (yas-snippet-dirs)))
1745 (cond ((file-directory-p directory)
1746 (yas-load-directory directory (not nojit))
1747 (if nojit
1748 (yas--message 3 "Loaded %s" directory)
1749 (yas--message 3 "Prepared just-in-time loading for %s" directory)))
1750 (t
1751 (push (yas--message 0 "Check your `yas-snippet-dirs': %s is not a directory" directory) errors))))
1752 (call-interactively 'yas-load-directory))
1753 errors))
1754
1755 (defun yas-reload-all (&optional interactive)
1756 "Reload all snippets and rebuild the YASnippet menu.
1757
1758 When called interactively force immediate reload of all known
1759 snippets under `yas-snippet-dirs', otherwise use just-in-time
1760 loading."
1761 (interactive "p")
1762 (catch 'abort
1763 (let ((errors)
1764 (snippet-editing-buffers
1765 (remove-if-not #'(lambda (buffer)
1766 (with-current-buffer buffer yas--editing-template))
1767 (buffer-list))))
1768 ;; Warn if there are buffers visiting snippets, since reloading will break
1769 ;; any on-line editing of those buffers.
1770 ;;
1771 (when snippet-editing-buffers
1772 (if interactive
1773 (if (y-or-n-p "Some buffers editing live snippets, close them and proceed with reload?")
1774 (mapc #'kill-buffer snippet-editing-buffers)
1775 (yas--message 1 "Aborted reload...")
1776 (throw 'abort nil))
1777 ;; in a non-interactive use, at least set
1778 ;; `yas--editing-template' to nil, make it guess it next time around
1779 (mapc #'(lambda (buffer) (setq yas--editing-template nil)) (buffer-list))))
1780
1781 ;; Empty all snippet tables, parenting info and all menu tables
1782 ;;
1783 (setq yas--tables (make-hash-table))
1784 (setq yas--parents (make-hash-table))
1785 (setq yas--menu-table (make-hash-table))
1786
1787 ;; Cancel all pending 'yas--scheduled-jit-loads'
1788 ;;
1789 (setq yas--scheduled-jit-loads (make-hash-table))
1790
1791 ;; Init the `yas-minor-mode-map', taking care not to break the
1792 ;; menu....
1793 ;;
1794 (setcdr yas-minor-mode-map (cdr (yas--init-minor-keymap)))
1795
1796 ;; Reload the directories listed in `yas-snippet-dirs' or prompt
1797 ;; the user to select one.
1798 ;;
1799 (setq errors (yas--load-snippet-dirs interactive))
1800 ;; Reload the direct keybindings
1801 ;;
1802 (yas-direct-keymaps-reload)
1803 ;; Reload the trigger-key (shoudn't be needed, but see issue #237)
1804 ;;
1805 (yas--trigger-key-reload)
1806
1807 (yas--message 3 "Reloaded everything%s...%s."
1808 (if interactive "" " (snippets will load just-in-time)")
1809 (if errors " (some errors, check *Messages*)" "")))))
1810
1811 (defun yas--load-pending-jits ()
1812 (when yas-minor-mode
1813 (dolist (mode (yas--modes-to-activate))
1814 (let ((forms (reverse (gethash mode yas--scheduled-jit-loads))))
1815 ;; must reverse to maintain coherence with `yas-snippet-dirs'
1816 (dolist (form forms)
1817 (yas--message 3 "Loading for `%s', just-in-time: %s!" mode form)
1818 (eval form))
1819 (remhash mode yas--scheduled-jit-loads)))))
1820
1821 ;; (when (<= emacs-major-version 22)
1822 ;; (add-hook 'after-change-major-mode-hook 'yas--load-pending-jits))
1823
1824 (defun yas--quote-string (string)
1825 "Escape and quote STRING.
1826 foo\"bar\\! -> \"foo\\\"bar\\\\!\""
1827 (concat "\""
1828 (replace-regexp-in-string "[\\\"]"
1829 "\\\\\\&"
1830 string
1831 t)
1832 "\""))
1833 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1834 ;;; Snippet compilation function
1835
1836 (defun yas--initialize ()
1837 "For backward compatibility, enable `yas-minor-mode' globally"
1838 (yas-global-mode 1))
1839
1840 (defun yas-compile-directory (top-level-dir)
1841 "Create .yas-compiled-snippets.el files under subdirs of TOP-LEVEL-DIR.
1842
1843 This works by stubbing a few functions, then calling
1844 `yas-load-directory'."
1845 (interactive "DTop level snippet directory?")
1846 (flet ((yas--load-yas-setup-file
1847 (file)
1848 (let ((elfile (concat file ".el")))
1849 (when (file-exists-p elfile)
1850 (insert ";;; .yas-setup.el support file if any:\n;;;\n")
1851 (insert-file-contents elfile)
1852 (end-of-buffer)
1853 )))
1854 (yas-define-snippets
1855 (mode snippets)
1856 (insert ";;; Snippet definitions:\n;;;\n")
1857 (let ((literal-snippets (list))
1858 (print-length nil))
1859 (dolist (snippet snippets)
1860 (let ((key (first snippet))
1861 (template-content (second snippet))
1862 (name (third snippet))
1863 (condition (fourth snippet))
1864 (group (fifth snippet))
1865 (expand-env (sixth snippet))
1866 (file nil) ;; (seventh snippet)) ;; omit on purpose
1867 (binding (eighth snippet))
1868 (uuid (ninth snippet)))
1869 (push `(,key
1870 ,template-content
1871 ,name
1872 ,condition
1873 ,group
1874 ,expand-env
1875 ,file
1876 ,binding
1877 ,uuid)
1878 literal-snippets)))
1879 (insert (pp-to-string `(yas-define-snippets ',mode ',literal-snippets)))
1880 (insert "\n\n")))
1881 (yas--load-directory-1
1882 (dir mode parents &rest ignore)
1883 (let ((output-file (concat (file-name-as-directory dir) ".yas-compiled-snippets.el")))
1884 (with-temp-file output-file
1885 (insert (format ";;; Compiled snippets and support files for `%s'\n" mode))
1886 (yas--load-directory-2 dir mode)
1887 (insert (format ";;; Do not edit! File generated at %s\n" (current-time-string)))))))
1888 (yas-load-directory top-level-dir nil)))
1889
1890 (defun yas-recompile-all ()
1891 "Compile every dir in `yas-snippet-dirs'."
1892 (interactive)
1893 (mapc #'yas-compile-directory (yas-snippet-dirs)))
1894
1895
1896 ;;; JIT loading
1897 ;;;
1898
1899 (defvar yas--scheduled-jit-loads (make-hash-table)
1900 "Alist of mode-symbols to forms to be evaled when `yas-minor-mode' kicks in.")
1901
1902 (defun yas--schedule-jit (mode form)
1903 (puthash mode
1904 (cons form
1905 (gethash mode yas--scheduled-jit-loads))
1906 yas--scheduled-jit-loads))
1907
1908
1909 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1910 ;;; Some user level functions
1911 ;;;
1912
1913 (defun yas-about ()
1914 (interactive)
1915 (message (concat "yasnippet (version "
1916 yas--version
1917 ") -- pluskid <pluskid@gmail.com>/joaotavora <joaotavora@gmail.com>")))
1918
1919 (defun yas--define-parents (mode parents)
1920 "Add PARENTS to the list of MODE's parents"
1921 (puthash mode (remove-duplicates
1922 (append parents
1923 (gethash mode yas--parents)))
1924 yas--parents))
1925
1926 (defun yas-define-snippets (mode snippets)
1927 "Define SNIPPETS for MODE.
1928
1929 SNIPPETS is a list of snippet definitions, each taking the
1930 following form
1931
1932 (KEY TEMPLATE NAME CONDITION GROUP EXPAND-ENV FILE KEYBINDING UUID)
1933
1934 Within these, only KEY and TEMPLATE are actually mandatory.
1935
1936 TEMPLATE might be a lisp form or a string, depending on whether
1937 this is a snippet or a snippet-command.
1938
1939 CONDITION, EXPAND-ENV and KEYBINDING are lisp forms, they have
1940 been `yas--read-lisp'-ed and will eventually be
1941 `yas--eval-lisp'-ed.
1942
1943 The remaining elements are strings.
1944
1945 FILE is probably of very little use if you're programatically
1946 defining snippets.
1947
1948 UUID is the snippets \"unique-id\". Loading a second snippet file
1949 with the same uuid replaced the previous snippet.
1950
1951 You can use `yas--parse-template' to return such lists based on
1952 the current buffers contents."
1953 (let ((snippet-table (yas--table-get-create mode))
1954 (template nil))
1955 (dolist (snippet snippets)
1956 (setq template (yas-define-snippets-1 snippet
1957 snippet-table)))
1958 template))
1959
1960 (defun yas-define-snippets-1 (snippet snippet-table)
1961 "Helper for `yas-define-snippets'."
1962 ;; X) Calculate some more defaults on the values returned by
1963 ;; `yas--parse-template'.
1964 ;;
1965 (let* ((file (seventh snippet))
1966 (key (car snippet))
1967 (name (or (third snippet)
1968 (and file
1969 (file-name-directory file))))
1970 (condition (fourth snippet))
1971 (group (fifth snippet))
1972 (keybinding (yas--read-keybinding (eighth snippet)))
1973 (uuid (or (ninth snippet)
1974 name))
1975 (template (or (gethash uuid (yas--table-uuidhash snippet-table))
1976 (yas--make-blank-template))))
1977 ;; X) populate the template object
1978 ;;
1979 (yas--populate-template template
1980 :table snippet-table
1981 :key key
1982 :content (second snippet)
1983 :name (or name key)
1984 :group group
1985 :condition condition
1986 :expand-env (sixth snippet)
1987 :file (seventh snippet)
1988 :keybinding keybinding
1989 :uuid uuid)
1990 ;; X) Update this template in the appropriate table. This step
1991 ;; also will take care of adding the key indicators in the
1992 ;; templates menu entry, if any
1993 ;;
1994 (yas--update-template snippet-table template)
1995 ;; X) Return the template
1996 ;;
1997 ;;
1998 template))
1999
2000 \f
2001 ;;; Apropos snippet menu:
2002 ;;
2003 ;; The snippet menu keymaps are store by mode in hash table called
2004 ;; `yas--menu-table'. They are linked to the main menu in
2005 ;; `yas--menu-keymap-get-create' and are initially created empty,
2006 ;; reflecting the table hierarchy.
2007 ;;
2008 ;; They can be populated in two mutually exclusive ways: (1) by
2009 ;; reading `yas--template-group', which in turn is populated by the "#
2010 ;; group:" directives of the snippets or the ".yas-make-groups" file
2011 ;; or (2) by using a separate `yas-define-menu' call, which declares a
2012 ;; menu structure based on snippets uuids.
2013 ;;
2014 ;; Both situations are handled in `yas--update-template-menu', which
2015 ;; uses the predicate `yas--template-menu-managed-by-yas-define-menu'
2016 ;; that can tell between the two situations.
2017 ;;
2018 ;; Note:
2019 ;;
2020 ;; * if `yas-define-menu' is used it must run before
2021 ;; `yas-define-snippets' and the UUIDS must match, otherwise we get
2022 ;; duplicate entries. The `yas--template' objects are created in
2023 ;; `yas-define-menu', holding nothing but the menu entry,
2024 ;; represented by a pair of ((menu-item NAME :keys KEYS) TYPE) and
2025 ;; stored in `yas--template-menu-binding-pair'. The (menu-item ...)
2026 ;; part is then stored in the menu keymap itself which make the item
2027 ;; appear to the user. These limitations could probably be revised.
2028 ;;
2029 ;; * The `yas--template-perm-group' slot is only used in
2030 ;; `yas-describe-tables'.
2031 ;;
2032 (defun yas--template-menu-binding-pair-get-create (template &optional type)
2033 "Get TEMPLATE's menu binding or assign it a new one.
2034
2035 TYPE may be `:stay', signalling this menu binding should be
2036 static in the menu."
2037 (or (yas--template-menu-binding-pair template)
2038 (let ((key (yas--template-key template))
2039 (keybinding (yas--template-keybinding template)))
2040 (setf (yas--template-menu-binding-pair template)
2041 (cons `(menu-item ,(or (yas--template-name template)
2042 (yas--template-uuid template))
2043 ,(yas--make-menu-binding template)
2044 :keys ,nil)
2045 type)))))
2046 (defun yas--template-menu-managed-by-yas-define-menu (template)
2047 "Non-nil if TEMPLATE's menu entry was included in a `yas-define-menu' call."
2048 (cdr (yas--template-menu-binding-pair template)))
2049
2050
2051 (defun yas--show-menu-p (mode)
2052 (cond ((eq yas-use-menu 'abbreviate)
2053 (find mode
2054 (mapcar #'(lambda (table)
2055 (yas--table-mode table))
2056 (yas--get-snippet-tables))))
2057 ((eq yas-use-menu 'full)
2058 t)
2059 ((eq yas-use-menu t)
2060 t)))
2061
2062 (defun yas--delete-from-keymap (keymap uuid)
2063 "Recursively delete items with UUID from KEYMAP and its submenus."
2064
2065 ;; XXX: This used to skip any submenus named \"parent mode\"
2066 ;;
2067 ;; First of all, recursively enter submenus, i.e. the tree is
2068 ;; searched depth first so that stale submenus can be found in the
2069 ;; higher passes.
2070 ;;
2071 (mapc #'(lambda (item)
2072 (when (and (listp (cdr item))
2073 (keymapp (third (cdr item))))
2074 (yas--delete-from-keymap (third (cdr item)) uuid)))
2075 (rest keymap))
2076 ;; Set the uuid entry to nil
2077 ;;
2078 (define-key keymap (vector (make-symbol uuid)) nil)
2079 ;; Destructively modify keymap
2080 ;;
2081 (setcdr keymap (delete-if #'(lambda (item)
2082 (or (null (cdr item))
2083 (and (keymapp (third (cdr item)))
2084 (null (cdr (third (cdr item)))))))
2085 (rest keymap))))
2086
2087 (defun yas-define-menu (mode menu &optional omit-items)
2088 "Define a snippet menu for MODE according to MENU, ommitting OMIT-ITEMS.
2089
2090 MENU is a list, its elements can be:
2091
2092 - (yas-item UUID) : Creates an entry the snippet identified with
2093 UUID. The menu entry for a snippet thus identified is
2094 permanent, i.e. it will never move (be reordered) in the menu.
2095
2096 - (yas-separator) : Creates a separator
2097
2098 - (yas-submenu NAME SUBMENU) : Creates a submenu with NAME,
2099 SUBMENU has the same form as MENU. NAME is also added to the
2100 list of groups of the snippets defined thereafter.
2101
2102 OMIT-ITEMS is a list of snippet uuid's that will always be
2103 ommited from MODE's menu, even if they're manually loaded.
2104
2105 This function does nothing if `yas-use-menu' is nil.
2106 "
2107 (when yas-use-menu
2108 (let* ((table (yas--table-get-create mode))
2109 (hash (yas--table-uuidhash table)))
2110 (yas--define-menu-1 table
2111 (yas--menu-keymap-get-create mode)
2112 menu
2113 hash)
2114 (dolist (uuid omit-items)
2115 (let ((template (or (gethash uuid hash)
2116 (yas--populate-template (puthash uuid
2117 (yas--make-blank-template)
2118 hash)
2119 :table table
2120 :uuid uuid))))
2121 (setf (yas--template-menu-binding-pair template) (cons nil :none)))))))
2122
2123 (defun yas--define-menu-1 (table menu-keymap menu uuidhash &optional group-list)
2124 (dolist (e (reverse menu))
2125 (cond ((eq (first e) 'yas-item)
2126 (let ((template (or (gethash (second e) uuidhash)
2127 (yas--populate-template (puthash (second e)
2128 (yas--make-blank-template)
2129 uuidhash)
2130 :table table
2131 :perm-group group-list
2132 :uuid (second e)))))
2133 (define-key menu-keymap (vector (gensym))
2134 (car (yas--template-menu-binding-pair-get-create template :stay)))))
2135 ((eq (first e) 'yas-submenu)
2136 (let ((subkeymap (make-sparse-keymap)))
2137 (define-key menu-keymap (vector (gensym))
2138 `(menu-item ,(second e) ,subkeymap))
2139 (yas--define-menu-1 table
2140 subkeymap
2141 (third e)
2142 uuidhash
2143 (append group-list (list (second e))))))
2144 ((eq (first e) 'yas-separator)
2145 (define-key menu-keymap (vector (gensym))
2146 '(menu-item "----")))
2147 (t
2148 (yas--message 3 "Don't know anything about menu entry %s" (first e))))))
2149 \f
2150 (defun yas--define (mode key template &optional name condition group)
2151 "Define a snippet. Expanding KEY into TEMPLATE.
2152
2153 NAME is a description to this template. Also update the menu if
2154 `yas-use-menu' is t. CONDITION is the condition attached to
2155 this snippet. If you attach a condition to a snippet, then it
2156 will only be expanded when the condition evaluated to non-nil."
2157 (yas-define-snippets mode
2158 (list (list key template name condition group))))
2159
2160 (defun yas-hippie-try-expand (first-time?)
2161 "Integrate with hippie expand. Just put this function in
2162 `hippie-expand-try-functions-list'."
2163 (when yas-minor-mode
2164 (if (not first-time?)
2165 (let ((yas-fallback-behavior 'return-nil))
2166 (yas-expand))
2167 (undo 1)
2168 nil)))
2169
2170
2171 ;;; Apropos condition-cache:
2172 ;;;
2173 ;;;
2174 ;;;
2175 ;;;
2176 (defvar yas--condition-cache-timestamp nil)
2177 (defmacro yas-define-condition-cache (func doc &rest body)
2178 "Define a function FUNC with doc DOC and body BODY, BODY is
2179 executed at most once every snippet expansion attempt, to check
2180 expansion conditions.
2181
2182 It doesn't make any sense to call FUNC programatically."
2183 `(defun ,func () ,(if (and doc
2184 (stringp doc))
2185 (concat doc
2186 "\n\nFor use in snippets' conditions. Within each
2187 snippet-expansion routine like `yas-expand', computes actual
2188 value for the first time then always returns a cached value.")
2189 (setq body (cons doc body))
2190 nil)
2191 (let ((timestamp-and-value (get ',func 'yas--condition-cache)))
2192 (if (equal (car timestamp-and-value) yas--condition-cache-timestamp)
2193 (cdr timestamp-and-value)
2194 (let ((new-value (progn
2195 ,@body
2196 )))
2197 (put ',func 'yas--condition-cache (cons yas--condition-cache-timestamp new-value))
2198 new-value)))))
2199
2200 (defalias 'yas-expand 'yas-expand-from-trigger-key)
2201 (defun yas-expand-from-trigger-key (&optional field)
2202 "Expand a snippet before point.
2203
2204 If no snippet expansion is possible, fall back to the behaviour
2205 defined in `yas-fallback-behavior'.
2206
2207 Optional argument FIELD is for non-interactive use and is an
2208 object satisfying `yas--field-p' to restrict the expansion to."
2209 (interactive)
2210 (setq yas--condition-cache-timestamp (current-time))
2211 (let (templates-and-pos)
2212 (unless (and yas-expand-only-for-last-commands
2213 (not (member last-command yas-expand-only-for-last-commands)))
2214 (setq templates-and-pos (if field
2215 (save-restriction
2216 (narrow-to-region (yas--field-start field)
2217 (yas--field-end field))
2218 (yas--current-key))
2219 (yas--current-key))))
2220 (if (and templates-and-pos
2221 (first templates-and-pos))
2222 (yas--expand-or-prompt-for-template (first templates-and-pos)
2223 (second templates-and-pos)
2224 (third templates-and-pos))
2225 (yas--fallback 'trigger-key))))
2226
2227 (defun yas-expand-from-keymap ()
2228 "Directly expand some snippets, searching `yas--direct-keymaps'.
2229
2230 If expansion fails, execute the previous binding for this key"
2231 (interactive)
2232 (setq yas--condition-cache-timestamp (current-time))
2233 (let* ((yas--prefix current-prefix-arg)
2234 (vec (subseq (this-command-keys-vector) (if current-prefix-arg
2235 universal-argument-num-events
2236 0)))
2237 (templates (mapcan #'(lambda (table)
2238 (yas--fetch table vec))
2239 (yas--get-snippet-tables))))
2240 (if templates
2241 (yas--expand-or-prompt-for-template templates)
2242 (let ((yas-fallback-behavior 'call-other-command))
2243 (yas--fallback)))))
2244
2245 (defun yas--expand-or-prompt-for-template (templates &optional start end)
2246 "Expand one of TEMPLATES from START to END.
2247
2248 Prompt the user if TEMPLATES has more than one element, else
2249 expand immediately. Common gateway for
2250 `yas-expand-from-trigger-key' and `yas-expand-from-keymap'."
2251 (let ((yas--current-template (or (and (rest templates) ;; more than one
2252 (yas--prompt-for-template (mapcar #'cdr templates)))
2253 (cdar templates))))
2254 (when yas--current-template
2255 (yas-expand-snippet (yas--template-content yas--current-template)
2256 start
2257 end
2258 (yas--template-expand-env yas--current-template)))))
2259
2260 (defun yas--trigger-key-for-fallback ()
2261 ;; When `yas-trigger-key' is <tab> it correctly overrides
2262 ;; org-mode's <tab>, for example and searching for fallbacks
2263 ;; correctly returns `org-cycle'. However, most other modes bind
2264 ;; "TAB" (which is translated from <tab>), and calling
2265 ;; (key-binding "TAB") does not place return that command into
2266 ;; our command-2 local. So we cheat.
2267 ;;
2268 (if (string= yas-trigger-key "<tab>")
2269 "TAB"
2270 yas-trigger-key))
2271
2272 (defun yas--fallback (&optional from-trigger-key-p)
2273 "Fallback after expansion has failed.
2274
2275 Common gateway for `yas-expand-from-trigger-key' and
2276 `yas-expand-from-keymap'."
2277 (cond ((eq yas-fallback-behavior 'return-nil)
2278 ;; return nil
2279 nil)
2280 ((eq yas-fallback-behavior 'call-other-command)
2281 (let* ((yas-minor-mode nil)
2282 (yas--direct-keymaps nil)
2283 (yas-trigger-key (yas--trigger-key-for-fallback))
2284 (keys-1 (this-command-keys-vector))
2285 (keys-2 (and yas-trigger-key
2286 from-trigger-key-p
2287 (stringp yas-trigger-key)
2288 (read-kbd-macro yas-trigger-key)))
2289 (command-1 (and keys-1 (key-binding keys-1)))
2290 (command-2 (and keys-2 (key-binding keys-2)))
2291 ;; An (ugly) safety: prevents infinite recursion of
2292 ;; yas-expand* calls.
2293 (command (or (and (symbolp command-1)
2294 (not (string-match "yas-expand" (symbol-name command-1)))
2295 command-1)
2296 (and (symbolp command-2)
2297 command-2))))
2298 (when (and (commandp command)
2299 (not (string-match "yas-expand" (symbol-name command))))
2300 (setq this-command command)
2301 (call-interactively command))))
2302 ((and (listp yas-fallback-behavior)
2303 (cdr yas-fallback-behavior)
2304 (eq 'apply (car yas-fallback-behavior)))
2305 (if (cddr yas-fallback-behavior)
2306 (apply (cadr yas-fallback-behavior)
2307 (cddr yas-fallback-behavior))
2308 (when (commandp (cadr yas-fallback-behavior))
2309 (setq this-command (cadr yas-fallback-behavior))
2310 (call-interactively (cadr yas-fallback-behavior)))))
2311 (t
2312 ;; also return nil if all the other fallbacks have failed
2313 nil)))
2314
2315
2316 \f
2317 ;;; Utils for snippet development:
2318
2319 (defun yas--all-templates (tables)
2320 "Get `yas--template' objects in TABLES, applicable for buffer and point.
2321
2322 Honours `yas-choose-tables-first', `yas-choose-keys-first' and
2323 `yas-buffer-local-condition'"
2324 (when yas-choose-tables-first
2325 (setq tables (list (yas--prompt-for-table tables))))
2326 (mapcar #'cdr
2327 (if yas-choose-keys-first
2328 (let ((key (yas--prompt-for-keys
2329 (mapcan #'yas--table-all-keys tables))))
2330 (when key
2331 (mapcan #'(lambda (table)
2332 (yas--fetch table key))
2333 tables)))
2334 (remove-duplicates (mapcan #'yas--table-templates tables)
2335 :test #'equal))))
2336
2337 (defun yas-insert-snippet (&optional no-condition)
2338 "Choose a snippet to expand, pop-up a list of choices according
2339 to `yas--prompt-function'.
2340
2341 With prefix argument NO-CONDITION, bypass filtering of snippets
2342 by condition."
2343 (interactive "P")
2344 (setq yas--condition-cache-timestamp (current-time))
2345 (let* ((yas-buffer-local-condition (or (and no-condition
2346 'always)
2347 yas-buffer-local-condition))
2348 (templates (yas--all-templates (yas--get-snippet-tables)))
2349 (yas--current-template (and templates
2350 (or (and (rest templates) ;; more than one template for same key
2351 (yas--prompt-for-template templates))
2352 (car templates))))
2353 (where (if (region-active-p)
2354 (cons (region-beginning) (region-end))
2355 (cons (point) (point)))))
2356 (if yas--current-template
2357 (yas-expand-snippet (yas--template-content yas--current-template)
2358 (car where)
2359 (cdr where)
2360 (yas--template-expand-env yas--current-template))
2361 (yas--message 3 "No snippets can be inserted here!"))))
2362
2363 (defun yas-visit-snippet-file ()
2364 "Choose a snippet to edit, selection like `yas-insert-snippet'.
2365
2366 Only success if selected snippet was loaded from a file. Put the
2367 visited file in `snippet-mode'."
2368 (interactive)
2369 (let* ((yas-buffer-local-condition 'always)
2370 (templates (yas--all-templates (yas--get-snippet-tables)))
2371 (yas-prompt-functions '(yas-ido-prompt yas-completing-prompt))
2372 (template (and templates
2373 (or (yas--prompt-for-template templates
2374 "Choose a snippet template to edit: ")
2375 (car templates)))))
2376
2377 (if template
2378 (yas--visit-snippet-file-1 template)
2379 (message "No snippets tables active!"))))
2380
2381 (defun yas--visit-snippet-file-1 (template)
2382 (let ((file (yas--template-file template)))
2383 (cond ((and file (file-readable-p file))
2384 (find-file-other-window file)
2385 (snippet-mode)
2386 (set (make-local-variable 'yas--editing-template) template))
2387 (file
2388 (message "Original file %s no longer exists!" file))
2389 (t
2390 (switch-to-buffer (format "*%s*"(yas--template-name template)))
2391 (let ((type 'snippet))
2392 (when (listp (yas--template-content template))
2393 (insert (format "# type: command\n"))
2394 (setq type 'command))
2395 (insert (format "# key: %s\n" (yas--template-key template)))
2396 (insert (format "# name: %s\n" (yas--template-name template)))
2397 (when (yas--template-keybinding template)
2398 (insert (format "# binding: %s\n" (yas--template-keybinding template))))
2399 (when (yas--template-expand-env template)
2400 (insert (format "# expand-env: %s\n" (yas--template-expand-env template))))
2401 (when (yas--template-condition template)
2402 (insert (format "# condition: %s\n" (yas--template-condition template))))
2403 (insert "# --\n")
2404 (insert (if (eq type 'command)
2405 (pp-to-string (yas--template-content template))
2406 (yas--template-content template))))
2407 (snippet-mode)
2408 (set (make-local-variable 'yas--editing-template) template)))))
2409
2410 (defun yas--guess-snippet-directories-1 (table)
2411 "Guesses possible snippet subdirectories for TABLE."
2412 (cons (yas--table-name table)
2413 (mapcan #'(lambda (parent)
2414 (yas--guess-snippet-directories-1
2415 parent))
2416 (yas--table-parents table))))
2417
2418 (defun yas--guess-snippet-directories (&optional table)
2419 "Try to guess suitable directories based on the current active
2420 tables (or optional TABLE).
2421
2422 Returns a list of elemts (TABLE . DIRS) where TABLE is a
2423 `yas--table' object and DIRS is a list of all possible directories
2424 where snippets of table might exist."
2425 (let ((main-dir (replace-regexp-in-string
2426 "/+$" ""
2427 (or (first (or (yas-snippet-dirs)
2428 (setq yas-snippet-dirs '("~/.emacs.d/snippets")))))))
2429 (tables (or (and table
2430 (list table))
2431 (yas--get-snippet-tables))))
2432 ;; HACK! the snippet table created here is actually registered!
2433 ;;
2434 (unless (or table (gethash major-mode yas--tables))
2435 (push (yas--table-get-create major-mode)
2436 tables))
2437
2438 (mapcar #'(lambda (table)
2439 (cons table
2440 (mapcar #'(lambda (subdir)
2441 (concat main-dir "/" subdir))
2442 (yas--guess-snippet-directories-1 table))))
2443 tables)))
2444
2445 (defun yas--make-directory-maybe (table-and-dirs &optional main-table-string)
2446 "Returns a dir inside TABLE-AND-DIRS, prompts for creation if none exists."
2447 (or (some #'(lambda (dir) (when (file-directory-p dir) dir)) (cdr table-and-dirs))
2448 (let ((candidate (first (cdr table-and-dirs))))
2449 (unless (file-writable-p (file-name-directory candidate))
2450 (error (yas--format "%s is not writable." candidate)))
2451 (if (y-or-n-p (format "Guessed directory (%s) for%s%s table \"%s\" does not exist! Create? "
2452 candidate
2453 (if (gethash (yas--table-mode (car table-and-dirs))
2454 yas--tables)
2455 ""
2456 " brand new")
2457 (or main-table-string
2458 "")
2459 (yas--table-name (car table-and-dirs))))
2460 (progn
2461 (make-directory candidate 'also-make-parents)
2462 ;; create the .yas-parents file here...
2463 candidate)))))
2464
2465 (defun yas-new-snippet (&optional no-template)
2466 "Pops a new buffer for writing a snippet.
2467
2468 Expands a snippet-writing snippet, unless the optional prefix arg
2469 NO-TEMPLATE is non-nil."
2470 (interactive "P")
2471 (let ((guessed-directories (yas--guess-snippet-directories)))
2472
2473 (switch-to-buffer "*new snippet*")
2474 (erase-buffer)
2475 (kill-all-local-variables)
2476 (snippet-mode)
2477 (yas-minor-mode 1)
2478 (set (make-local-variable 'yas--guessed-modes) (mapcar #'(lambda (d)
2479 (yas--table-mode (car d)))
2480 guessed-directories))
2481 (unless no-template (yas-expand-snippet "\
2482 # -*- mode: snippet -*-
2483 # name: $1
2484 # key: ${2:${1:$(replace-regexp-in-string \"\\\\\\\\(\\\\\\\\w+\\\\\\\\).*\" \"\\\\\\\\1\" yas-text)}}${3:
2485 # binding: ${4:direct-keybinding}}${5:
2486 # expand-env: ((${6:some-var} ${7:some-value}))}${8:
2487 # type: command}
2488 # --
2489 $0"))))
2490
2491 (defun yas--compute-major-mode-and-parents (file)
2492 "Given FILE, find the nearest snippet directory for a given
2493 mode, then return a list (MODE-SYM PARENTS), the mode's symbol and a list
2494 representing one or more of the mode's parents.
2495
2496 Note that MODE-SYM need not be the symbol of a real major mode,
2497 neither do the elements of PARENTS."
2498 (let* ((file-dir (and file
2499 (directory-file-name (or (some #'(lambda (special)
2500 (locate-dominating-file file special))
2501 '(".yas-setup.el"
2502 ".yas-make-groups"
2503 ".yas-parents"))
2504 (directory-file-name (file-name-directory file))))))
2505 (parents-file-name (concat file-dir "/.yas-parents"))
2506 (major-mode-name (and file-dir
2507 (file-name-nondirectory file-dir)))
2508 (major-mode-sym (or (and major-mode-name
2509 (intern major-mode-name))))
2510 (parents (when (file-readable-p parents-file-name)
2511 (mapcar #'intern
2512 (split-string
2513 (with-temp-buffer
2514 (insert-file-contents parents-file-name)
2515 (buffer-substring-no-properties (point-min)
2516 (point-max))))))))
2517 (when major-mode-sym
2518 (cons major-mode-sym parents))))
2519
2520 (defvar yas--editing-template nil
2521 "Supporting variable for `yas-load-snippet-buffer' and `yas--visit-snippet'")
2522
2523 (defvar yas--current-template nil
2524 "Holds the current template being expanded into a snippet.")
2525
2526 (defvar yas--guessed-modes nil
2527 "List of guessed modes supporting `yas-load-snippet-buffer'.")
2528
2529 (defun yas--read-table ()
2530 "Ask user for a snippet table, help with some guessing."
2531 (let ((prompt (if (and (featurep 'ido)
2532 ido-mode)
2533 'ido-completing-read 'completing-read)))
2534 (unless yas--guessed-modes
2535 (set (make-local-variable 'yas--guessed-modes)
2536 (or (yas--compute-major-mode-and-parents buffer-file-name))))
2537 (intern
2538 (funcall prompt (format "Choose or enter a table (yas guesses %s): "
2539 (if yas--guessed-modes
2540 (first yas--guessed-modes)
2541 "nothing"))
2542 (mapcar #'symbol-name yas--guessed-modes)
2543 nil
2544 nil
2545 nil
2546 nil
2547 (if (first yas--guessed-modes)
2548 (symbol-name (first yas--guessed-modes)))))))
2549
2550 (defun yas-load-snippet-buffer (table &optional interactive)
2551 "Parse and load current buffer's snippet definition into TABLE.
2552
2553 TABLE is a symbol naming a passed to `yas--table-get-create'.
2554
2555 When called interactively, prompt for the table name and
2556 whether (and where) to save the snippet, then quit the window."
2557 (interactive (list (yas--read-table) t))
2558 (cond
2559 ;; We have `yas--editing-template', this buffer's content comes from a
2560 ;; template which is already loaded and neatly positioned,...
2561 ;;
2562 (yas--editing-template
2563 (yas-define-snippets-1 (yas--parse-template (yas--template-file yas--editing-template))
2564 (yas--template-table yas--editing-template)))
2565 ;; Try to use `yas--guessed-modes'. If we don't have that use the
2566 ;; value from `yas--compute-major-mode-and-parents'
2567 ;;
2568 (t
2569 (unless yas--guessed-modes
2570 (set (make-local-variable 'yas--guessed-modes) (or (yas--compute-major-mode-and-parents buffer-file-name))))
2571 (let* ((table (yas--table-get-create table)))
2572 (set (make-local-variable 'yas--editing-template)
2573 (yas-define-snippets-1 (yas--parse-template buffer-file-name)
2574 table)))))
2575
2576 (when (and interactive
2577 (or
2578 ;; Only offer to save this if it looks like a library or new
2579 ;; snippet (loaded from elisp, from a dir in `yas-snippet-dirs'
2580 ;; which is not the first, or from an unwritable file)
2581 ;;
2582 (not (yas--template-file yas--editing-template))
2583 (not (file-writable-p (yas--template-file yas--editing-template)))
2584 (and (listp yas-snippet-dirs)
2585 (second yas-snippet-dirs)
2586 (not (string-match (expand-file-name (first yas-snippet-dirs))
2587 (yas--template-file yas--editing-template)))))
2588 (y-or-n-p (yas--format "Looks like a library or new snippet. Save to new file? ")))
2589 (let* ((option (first (yas--guess-snippet-directories (yas--template-table yas--editing-template))))
2590 (chosen (and option
2591 (yas--make-directory-maybe option))))
2592 (when chosen
2593 (let ((default-file-name (or (and (yas--template-file yas--editing-template)
2594 (file-name-nondirectory (yas--template-file yas--editing-template)))
2595 (yas--template-name yas--editing-template))))
2596 (write-file (concat chosen "/"
2597 (read-from-minibuffer (format "File name to create in %s? " chosen)
2598 default-file-name)))
2599 (setf (yas--template-file yas--editing-template) buffer-file-name)))))
2600 (when interactive
2601 (quit-window interactive)
2602 (yas--message 3 "Snippet \"%s\" loaded for %s."
2603 (yas--template-name yas--editing-template)
2604 (yas--table-name (yas--template-table yas--editing-template)))))
2605
2606
2607 (defun yas-tryout-snippet (&optional debug)
2608 "Test current buffers's snippet template in other buffer."
2609 (interactive "P")
2610 (let* ((major-mode-and-parent (yas--compute-major-mode-and-parents buffer-file-name))
2611 (parsed (yas--parse-template))
2612 (test-mode (or (and (car major-mode-and-parent)
2613 (fboundp (car major-mode-and-parent))
2614 (car major-mode-and-parent))
2615 (first yas--guessed-modes)
2616 (intern (read-from-minibuffer (yas--format "Please input a mode: ")))))
2617 (yas--current-template
2618 (and parsed
2619 (fboundp test-mode)
2620 (yas--populate-template (yas--make-blank-template)
2621 :table nil ;; no tables for ephemeral snippets
2622 :key (first parsed)
2623 :content (second parsed)
2624 :name (third parsed)
2625 :expand-env (sixth parsed)))))
2626 (cond (yas--current-template
2627 (let ((buffer-name (format "*testing snippet: %s*" (yas--template-name yas--current-template))))
2628 (kill-buffer (get-buffer-create buffer-name))
2629 (switch-to-buffer (get-buffer-create buffer-name))
2630 (setq buffer-undo-list nil)
2631 (condition-case nil (funcall test-mode) (error nil))
2632 (yas-minor-mode 1)
2633 (setq buffer-read-only nil)
2634 (yas-expand-snippet (yas--template-content yas--current-template)
2635 (point-min)
2636 (point-max)
2637 (yas--template-expand-env yas--current-template))
2638 (when (and debug
2639 (require 'yasnippet-debug nil t))
2640 (add-hook 'post-command-hook 'yas-debug-snippet-vars nil t))))
2641 (t
2642 (yas--message 3 "Cannot test snippet for unknown major mode")))))
2643
2644 (defun yas-active-keys ()
2645 "Return all active trigger keys for current buffer and point"
2646 (remove-duplicates (mapcan #'yas--table-all-keys (yas--get-snippet-tables))
2647 :test #'string=))
2648
2649 (defun yas--template-fine-group (template)
2650 (car (last (or (yas--template-group template)
2651 (yas--template-perm-group template)))))
2652
2653 (defun yas-describe-tables (&optional choose)
2654 "Display snippets for each table."
2655 (interactive "P")
2656 (let* ((by-name-hash (and choose
2657 (y-or-n-p "Show by namehash? ")))
2658 (buffer (get-buffer-create "*YASnippet tables*"))
2659 (active-tables (yas--get-snippet-tables))
2660 (remain-tables (let ((all))
2661 (maphash #'(lambda (k v)
2662 (unless (find v active-tables)
2663 (push v all)))
2664 yas--tables)
2665 all))
2666 (table-lists (list active-tables remain-tables))
2667 (original-buffer (current-buffer))
2668 (continue t)
2669 (yas--condition-cache-timestamp (current-time)))
2670 (with-current-buffer buffer
2671 (setq buffer-read-only nil)
2672 (erase-buffer)
2673 (cond ((not by-name-hash)
2674 (insert "YASnippet tables: \n")
2675 (while (and table-lists
2676 continue)
2677 (dolist (table (car table-lists))
2678 (yas--describe-pretty-table table original-buffer))
2679 (setq table-lists (cdr table-lists))
2680 (when table-lists
2681 (yas--create-snippet-xrefs)
2682 (display-buffer buffer)
2683 (setq continue (and choose (y-or-n-p "Show also non-active tables? ")))))
2684 (yas--create-snippet-xrefs)
2685 (help-mode)
2686 (goto-char 1))
2687 (t
2688 (insert "\n\nYASnippet tables by NAMEHASH: \n")
2689 (dolist (table (append active-tables remain-tables))
2690 (insert (format "\nSnippet table `%s':\n\n" (yas--table-name table)))
2691 (let ((keys))
2692 (maphash #'(lambda (k v)
2693 (push k keys))
2694 (yas--table-hash table))
2695 (dolist (key keys)
2696 (insert (format " key %s maps snippets: %s\n" key
2697 (let ((names))
2698 (maphash #'(lambda (k v)
2699 (push k names))
2700 (gethash key (yas--table-hash table)))
2701 names))))))))
2702 (goto-char 1)
2703 (setq buffer-read-only t))
2704 (display-buffer buffer)))
2705
2706 (defun yas--describe-pretty-table (table &optional original-buffer)
2707 (insert (format "\nSnippet table `%s'"
2708 (yas--table-name table)))
2709 (if (yas--table-parents table)
2710 (insert (format " parents: %s\n"
2711 (mapcar #'yas--table-name
2712 (yas--table-parents table))))
2713 (insert "\n"))
2714 (insert (make-string 100 ?-) "\n")
2715 (insert "group state name key binding\n")
2716 (let ((groups-hash (make-hash-table :test #'equal)))
2717 (maphash #'(lambda (k v)
2718 (let ((group (or (yas--template-fine-group v)
2719 "(top level)")))
2720 (when (yas--template-name v)
2721 (puthash group
2722 (cons v (gethash group groups-hash))
2723 groups-hash))))
2724 (yas--table-uuidhash table))
2725 (maphash
2726 #'(lambda (group templates)
2727 (setq group (truncate-string-to-width group 25 0 ? "..."))
2728 (insert (make-string 100 ?-) "\n")
2729 (dolist (p templates)
2730 (let ((name (truncate-string-to-width (propertize (format "\\\\snippet `%s'" (yas--template-name p))
2731 'yasnippet p)
2732 50 0 ? "..."))
2733 (group (prog1 group
2734 (setq group (make-string (length group) ? ))))
2735 (condition-string (let ((condition (yas--template-condition p)))
2736 (if (and condition
2737 original-buffer)
2738 (with-current-buffer original-buffer
2739 (if (yas--eval-condition condition)
2740 "(y)"
2741 "(s)"))
2742 "(a)"))))
2743 (insert group " ")
2744 (insert condition-string " ")
2745 (insert name
2746 (if (string-match "\\.\\.\\.$" name)
2747 "'"
2748 " ")
2749 " ")
2750 (insert (truncate-string-to-width (or (yas--template-key p) "")
2751 15 0 ? "...") " ")
2752 (insert (truncate-string-to-width (key-description (yas--template-keybinding p))
2753 15 0 ? "...") " ")
2754 (insert "\n"))))
2755 groups-hash)))
2756
2757
2758 \f
2759 ;;; User convenience functions, for using in snippet definitions
2760
2761 (defvar yas-modified-p nil
2762 "Non-nil if field has been modified by user or transformation.")
2763
2764 (defvar yas-moving-away-p nil
2765 "Non-nil if user is about to exit field.")
2766
2767 (defvar yas-text nil
2768 "Contains current field text.")
2769
2770 (defun yas-substr (str pattern &optional subexp)
2771 "Search PATTERN in STR and return SUBEXPth match.
2772
2773 If found, the content of subexp group SUBEXP (default 0) is
2774 returned, or else the original STR will be returned."
2775 (let ((grp (or subexp 0)))
2776 (save-match-data
2777 (if (string-match pattern str)
2778 (match-string-no-properties grp str)
2779 str))))
2780
2781 (defun yas-choose-value (&rest possibilities)
2782 "Prompt for a string in POSSIBILITIES and return it.
2783
2784 The last element of POSSIBILITIES may be a list of strings."
2785 (unless (or yas-moving-away-p
2786 yas-modified-p)
2787 (setq possibilities (nreverse possibilities))
2788 (setq possibilities (if (listp (car possibilities))
2789 (append (reverse (car possibilities)) (rest possibilities))
2790 possibilities))
2791 (some #'(lambda (fn)
2792 (funcall fn "Choose: " possibilities))
2793 yas-prompt-functions)))
2794
2795 (defun yas-key-to-value (alist)
2796 "Prompt for a string in the list POSSIBILITIES and return it."
2797 (unless (or yas-moving-away-p
2798 yas-modified-p)
2799 (let ((key (read-key-sequence "")))
2800 (when (stringp key)
2801 (or (cdr (find key alist :key #'car :test #'string=))
2802 key)))))
2803
2804 (defun yas-throw (text)
2805 "Throw a yas--exception with TEXT as the reason."
2806 (throw 'yas--exception (cons 'yas--exception text)))
2807
2808 (defun yas-verify-value (possibilities)
2809 "Verify that the current field value is in POSSIBILITIES
2810
2811 Otherwise throw exception."
2812 (when (and yas-moving-away-p (notany #'(lambda (pos) (string= pos yas-text)) possibilities))
2813 (yas-throw (yas--format "Field only allows %s" possibilities))))
2814
2815 (defun yas-field-value (number)
2816 "Get the string for field with NUMBER.
2817
2818 Use this in primary and mirror transformations to tget."
2819 (let* ((snippet (car (yas--snippets-at-point)))
2820 (field (and snippet
2821 (yas--snippet-find-field snippet number))))
2822 (when field
2823 (yas--field-text-for-display field))))
2824
2825 (defun yas-text ()
2826 "Return `yas-text' if that exists and is non-empty, else nil."
2827 (if (and yas-text
2828 (not (string= "" yas-text)))
2829 yas-text))
2830
2831 (defun yas-selected-text ()
2832 "Return `yas-selected-text' if that exists and is non-empty, else nil."
2833 (if (and yas-selected-text
2834 (not (string= "" yas-selected-text)))
2835 yas-selected-text))
2836
2837 (defun yas--get-field-once (number &optional transform-fn)
2838 (unless yas-modified-p
2839 (if transform-fn
2840 (funcall transform-fn (yas-field-value number))
2841 (yas-field-value number))))
2842
2843 (defun yas-default-from-field (number)
2844 (unless yas-modified-p
2845 (yas-field-value number)))
2846
2847 (defun yas-inside-string ()
2848 (equal 'font-lock-string-face (get-char-property (1- (point)) 'face)))
2849
2850 (defun yas-unimplemented (&optional missing-feature)
2851 (if yas--current-template
2852 (if (y-or-n-p (format "This snippet is unimplemented (missing %s) Visit the snippet definition? "
2853 (or missing-feature
2854 "something")))
2855 (yas--visit-snippet-file-1 yas--current-template))
2856 (message "No implementation. Missing %s" (or missing-feature "something"))))
2857
2858 \f
2859 ;;; Snippet expansion and field management
2860
2861 (defvar yas--active-field-overlay nil
2862 "Overlays the currently active field.")
2863
2864 (defvar yas--field-protection-overlays nil
2865 "Two overlays protect the current active field ")
2866
2867 (defconst yas--prefix nil
2868 "A prefix argument for expansion direct from keybindings")
2869
2870 (defvar yas-selected-text nil
2871 "The selected region deleted on the last snippet expansion.")
2872
2873 (defvar yas--start-column nil
2874 "The column where the snippet expansion started.")
2875
2876 (make-variable-buffer-local 'yas--active-field-overlay)
2877 (make-variable-buffer-local 'yas--field-protection-overlays)
2878 (put 'yas--active-field-overlay 'permanent-local t)
2879 (put 'yas--field-protection-overlays 'permanent-local t)
2880
2881 (defstruct (yas--snippet (:constructor yas--make-snippet ()))
2882 "A snippet.
2883
2884 ..."
2885 (fields '())
2886 (exit nil)
2887 (id (yas--snippet-next-id) :read-only t)
2888 (control-overlay nil)
2889 active-field
2890 ;; stacked expansion: the `previous-active-field' slot saves the
2891 ;; active field where the child expansion took place
2892 previous-active-field
2893 force-exit)
2894
2895 (defstruct (yas--field (:constructor yas--make-field (number start end parent-field)))
2896 "A field."
2897 number
2898 start end
2899 parent-field
2900 (mirrors '())
2901 (transform nil)
2902 (modified-p nil)
2903 next)
2904
2905 (defstruct (yas--mirror (:constructor yas--make-mirror (start end transform)))
2906 "A mirror."
2907 start end
2908 (transform nil)
2909 parent-field
2910 next)
2911
2912 (defstruct (yas--exit (:constructor yas--make-exit (marker)))
2913 marker
2914 next)
2915
2916 (defun yas--apply-transform (field-or-mirror field &optional empty-on-nil-p)
2917 "Calculate transformed string for FIELD-OR-MIRROR from FIELD.
2918
2919 If there is no transform for ht field, return nil.
2920
2921 If there is a transform but it returns nil, return the empty
2922 string iff EMPTY-ON-NIL-P is true."
2923 (let* ((yas-text (yas--field-text-for-display field))
2924 (text yas-text)
2925 (yas-modified-p (yas--field-modified-p field))
2926 (yas-moving-away-p nil)
2927 (transform (if (yas--mirror-p field-or-mirror)
2928 (yas--mirror-transform field-or-mirror)
2929 (yas--field-transform field-or-mirror)))
2930 (start-point (if (yas--mirror-p field-or-mirror)
2931 (yas--mirror-start field-or-mirror)
2932 (yas--field-start field-or-mirror)))
2933 (transformed (and transform
2934 (save-excursion
2935 (goto-char start-point)
2936 (let ((ret (yas--eval-lisp transform)))
2937 (or ret (and empty-on-nil-p "")))))))
2938 transformed))
2939
2940 (defsubst yas--replace-all (from to &optional text)
2941 "Replace all occurance from FROM to TO.
2942
2943 With optional string TEXT do it in that string."
2944 (if text
2945 (replace-regexp-in-string (regexp-quote from) to text t t)
2946 (goto-char (point-min))
2947 (while (search-forward from nil t)
2948 (replace-match to t t text))))
2949
2950 (defun yas--snippet-find-field (snippet number)
2951 (find-if #'(lambda (field)
2952 (eq number (yas--field-number field)))
2953 (yas--snippet-fields snippet)))
2954
2955 (defun yas--snippet-sort-fields (snippet)
2956 "Sort the fields of SNIPPET in navigation order."
2957 (setf (yas--snippet-fields snippet)
2958 (sort (yas--snippet-fields snippet)
2959 #'yas--snippet-field-compare)))
2960
2961 (defun yas--snippet-field-compare (field1 field2)
2962 "Compare two fields. The field with a number is sorted first.
2963 If they both have a number, compare through the number. If neither
2964 have, compare through the field's start point"
2965 (let ((n1 (yas--field-number field1))
2966 (n2 (yas--field-number field2)))
2967 (if n1
2968 (if n2
2969 (or (zerop n2) (and (not (zerop n1))
2970 (< n1 n2)))
2971 (not (zerop n1)))
2972 (if n2
2973 (zerop n2)
2974 (< (yas--field-start field1)
2975 (yas--field-start field2))))))
2976
2977 (defun yas--field-probably-deleted-p (snippet field)
2978 "Guess if SNIPPET's FIELD should be skipped."
2979 (and
2980 ;; field must be zero lentgh
2981 ;;
2982 (zerop (- (yas--field-start field) (yas--field-end field)))
2983 ;; skip if:
2984 (or
2985 ;; 1) is a nested field and it's been modified
2986 ;;
2987 (and (yas--field-parent-field field)
2988 (yas--field-modified-p field))
2989 ;; 2) ends just before the snippet end
2990 ;;
2991 (and (eq field (car (last (yas--snippet-fields snippet))))
2992 (= (yas--field-start field) (overlay-end (yas--snippet-control-overlay snippet)))))
2993 ;; the field numbered 0, just before the exit marker, should
2994 ;; never be skipped
2995 ;;
2996 (not (zerop (yas--field-number field)))))
2997
2998 (defun yas--snippets-at-point (&optional all-snippets)
2999 "Return a sorted list of snippets at point, most recently
3000 inserted first."
3001 (sort
3002 (remove nil (remove-duplicates (mapcar #'(lambda (ov)
3003 (overlay-get ov 'yas--snippet))
3004 (if all-snippets
3005 (overlays-in (point-min) (point-max))
3006 (nconc (overlays-at (point)) (overlays-at (1- (point))))))))
3007 #'(lambda (s1 s2)
3008 (<= (yas--snippet-id s2) (yas--snippet-id s1)))))
3009
3010 (defun yas-next-field-or-maybe-expand ()
3011 "Try to expand a snippet at a key before point, otherwise
3012 delegate to `yas-next-field'."
3013 (interactive)
3014 (if yas-triggers-in-field
3015 (let ((yas-fallback-behavior 'return-nil)
3016 (active-field (overlay-get yas--active-field-overlay 'yas--field)))
3017 (when active-field
3018 (unless (yas-expand-from-trigger-key active-field)
3019 (yas-next-field))))
3020 (yas-next-field)))
3021
3022 (defun yas-next-field (&optional arg)
3023 "Navigate to next field. If there's none, exit the snippet."
3024 (interactive)
3025 (let* ((arg (or arg
3026 1))
3027 (snippet (first (yas--snippets-at-point)))
3028 (active-field (overlay-get yas--active-field-overlay 'yas--field))
3029 (live-fields (remove-if #'(lambda (field)
3030 (and (not (eq field active-field))
3031 (yas--field-probably-deleted-p snippet field)))
3032 (yas--snippet-fields snippet)))
3033 (active-field-pos (position active-field live-fields))
3034 (target-pos (and active-field-pos (+ arg active-field-pos)))
3035 (target-field (and target-pos (nth target-pos live-fields))))
3036 ;; First check if we're moving out of a field with a transform
3037 ;;
3038 (when (and active-field
3039 (yas--field-transform active-field))
3040 (let* ((yas-moving-away-p t)
3041 (yas-text (yas--field-text-for-display active-field))
3042 (text yas-text)
3043 (yas-modified-p (yas--field-modified-p active-field)))
3044 ;; primary field transform: exit call to field-transform
3045 (yas--eval-lisp (yas--field-transform active-field))))
3046 ;; Now actually move...
3047 (cond ((and target-pos (>= target-pos (length live-fields)))
3048 (yas-exit-snippet snippet))
3049 (target-field
3050 (yas--move-to-field snippet target-field))
3051 (t
3052 nil))))
3053
3054 (defun yas--place-overlays (snippet field)
3055 "Correctly place overlays for SNIPPET's FIELD"
3056 (yas--make-move-field-protection-overlays snippet field)
3057 (yas--make-move-active-field-overlay snippet field))
3058
3059 (defun yas--move-to-field (snippet field)
3060 "Update SNIPPET to move to field FIELD.
3061
3062 Also create some protection overlays"
3063 (goto-char (yas--field-start field))
3064 (yas--place-overlays snippet field)
3065 (overlay-put yas--active-field-overlay 'yas--field field)
3066 (let ((number (yas--field-number field)))
3067 ;; check for the special ${0: ...} field
3068 (if (and number (zerop number))
3069 (progn
3070 (set-mark (yas--field-end field))
3071 (setf (yas--snippet-force-exit snippet)
3072 (or (yas--field-transform field)
3073 t)))
3074 ;; make this field active
3075 (setf (yas--snippet-active-field snippet) field)
3076 ;; primary field transform: first call to snippet transform
3077 (unless (yas--field-modified-p field)
3078 (if (yas--field-update-display field snippet)
3079 (yas--update-mirrors snippet)
3080 (setf (yas--field-modified-p field) nil))))))
3081
3082 (defun yas-prev-field ()
3083 "Navigate to prev field. If there's none, exit the snippet."
3084 (interactive)
3085 (yas-next-field -1))
3086
3087 (defun yas-abort-snippet (&optional snippet)
3088 (interactive)
3089 (let ((snippet (or snippet
3090 (car (yas--snippets-at-point)))))
3091 (when snippet
3092 (setf (yas--snippet-force-exit snippet) t))))
3093
3094 (defun yas-exit-snippet (snippet)
3095 "Goto exit-marker of SNIPPET."
3096 (interactive (list (first (yas--snippets-at-point))))
3097 (when snippet
3098 (setf (yas--snippet-force-exit snippet) t)
3099 (goto-char (if (yas--snippet-exit snippet)
3100 (yas--exit-marker (yas--snippet-exit snippet))
3101 (overlay-end (yas--snippet-control-overlay snippet))))))
3102
3103 (defun yas-exit-all-snippets ()
3104 "Exit all snippets."
3105 (interactive)
3106 (mapc #'(lambda (snippet)
3107 (yas-exit-snippet snippet)
3108 (yas--check-commit-snippet))
3109 (yas--snippets-at-point 'all-snippets)))
3110
3111 \f
3112 ;;; Some low level snippet-routines:
3113
3114 (defmacro yas--inhibit-overlay-hooks (&rest body)
3115 "Run BODY with `yas--inhibit-overlay-hooks' set to t."
3116 (declare (indent 0))
3117 `(let ((yas--inhibit-overlay-hooks t))
3118 (progn ,@body)))
3119
3120 (defvar yas-snippet-beg nil "Beginning position of the last snippet commited.")
3121 (defvar yas-snippet-end nil "End position of the last snippet commited.")
3122
3123 (defun yas--commit-snippet (snippet)
3124 "Commit SNIPPET, but leave point as it is. This renders the
3125 snippet as ordinary text."
3126
3127 (let ((control-overlay (yas--snippet-control-overlay snippet)))
3128 ;;
3129 ;; Save the end of the moribund snippet in case we need to revive it
3130 ;; its original expansion.
3131 ;;
3132 (when (and control-overlay
3133 (overlay-buffer control-overlay))
3134 (setq yas-snippet-beg (overlay-start control-overlay))
3135 (setq yas-snippet-end (overlay-end control-overlay))
3136 (delete-overlay control-overlay))
3137
3138 (yas--inhibit-overlay-hooks
3139 (when yas--active-field-overlay
3140 (delete-overlay yas--active-field-overlay))
3141 (when yas--field-protection-overlays
3142 (mapc #'delete-overlay yas--field-protection-overlays)))
3143
3144 ;; stacked expansion: if the original expansion took place from a
3145 ;; field, make sure we advance it here at least to
3146 ;; `yas-snippet-end'...
3147 ;;
3148 (let ((previous-field (yas--snippet-previous-active-field snippet)))
3149 (when (and yas-snippet-end previous-field)
3150 (yas--advance-end-maybe previous-field yas-snippet-end)))
3151
3152 ;; Convert all markers to points,
3153 ;;
3154 (yas--markers-to-points snippet)
3155
3156 ;; Take care of snippet revival
3157 ;;
3158 (if yas-snippet-revival
3159 (push `(apply yas--snippet-revive ,yas-snippet-beg ,yas-snippet-end ,snippet)
3160 buffer-undo-list)
3161 ;; Dismember the snippet... this is useful if we get called
3162 ;; again from `yas--take-care-of-redo'....
3163 (setf (yas--snippet-fields snippet) nil)))
3164
3165 (yas--message 3 "Snippet %s exited." (yas--snippet-id snippet)))
3166
3167 (defun yas--safely-run-hooks (hook-var)
3168 (condition-case error
3169 (run-hooks hook-var)
3170 (error
3171 (yas--message 3 "%s error: %s" hook-var (error-message-string error)))))
3172
3173
3174 (defun yas--check-commit-snippet ()
3175 "Checks if point exited the currently active field of the
3176 snippet, if so cleans up the whole snippet up."
3177 (let* ((snippets (yas--snippets-at-point 'all-snippets))
3178 (snippets-left snippets)
3179 (snippet-exit-transform))
3180 (dolist (snippet snippets)
3181 (let ((active-field (yas--snippet-active-field snippet)))
3182 (setq snippet-exit-transform (yas--snippet-force-exit snippet))
3183 (cond ((or snippet-exit-transform
3184 (not (and active-field (yas--field-contains-point-p active-field))))
3185 (setq snippets-left (delete snippet snippets-left))
3186 (setf (yas--snippet-force-exit snippet) nil)
3187 (yas--commit-snippet snippet))
3188 ((and active-field
3189 (or (not yas--active-field-overlay)
3190 (not (overlay-buffer yas--active-field-overlay))))
3191 ;;
3192 ;; stacked expansion: this case is mainly for recent
3193 ;; snippet exits that place us back int the field of
3194 ;; another snippet
3195 ;;
3196 (save-excursion
3197 (yas--move-to-field snippet active-field)
3198 (yas--update-mirrors snippet)))
3199 (t
3200 nil))))
3201 (unless (or (null snippets) snippets-left)
3202 (if snippet-exit-transform
3203 (yas--eval-lisp-no-saves snippet-exit-transform))
3204 (yas--safely-run-hooks 'yas-after-exit-snippet-hook))))
3205
3206 ;; Apropos markers-to-points:
3207 ;;
3208 ;; This was found useful for performance reasons, so that an
3209 ;; excessive number of live markers aren't kept around in the
3210 ;; `buffer-undo-list'. However, in `markers-to-points', the
3211 ;; set-to-nil markers can't simply be discarded and replaced with
3212 ;; fresh ones in `points-to-markers'. The original marker that was
3213 ;; just set to nil has to be reused.
3214 ;;
3215 ;; This shouldn't bring horrible problems with undo/redo, but it
3216 ;; you never know
3217 ;;
3218 (defun yas--markers-to-points (snippet)
3219 "Convert all markers in SNIPPET to a cons (POINT . MARKER)
3220 where POINT is the original position of the marker and MARKER is
3221 the original marker object with the position set to nil."
3222 (dolist (field (yas--snippet-fields snippet))
3223 (let ((start (marker-position (yas--field-start field)))
3224 (end (marker-position (yas--field-end field))))
3225 (set-marker (yas--field-start field) nil)
3226 (set-marker (yas--field-end field) nil)
3227 (setf (yas--field-start field) (cons start (yas--field-start field)))
3228 (setf (yas--field-end field) (cons end (yas--field-end field))))
3229 (dolist (mirror (yas--field-mirrors field))
3230 (let ((start (marker-position (yas--mirror-start mirror)))
3231 (end (marker-position (yas--mirror-end mirror))))
3232 (set-marker (yas--mirror-start mirror) nil)
3233 (set-marker (yas--mirror-end mirror) nil)
3234 (setf (yas--mirror-start mirror) (cons start (yas--mirror-start mirror)))
3235 (setf (yas--mirror-end mirror) (cons end (yas--mirror-end mirror))))))
3236 (let ((snippet-exit (yas--snippet-exit snippet)))
3237 (when snippet-exit
3238 (let ((exit (marker-position (yas--exit-marker snippet-exit))))
3239 (set-marker (yas--exit-marker snippet-exit) nil)
3240 (setf (yas--exit-marker snippet-exit) (cons exit (yas--exit-marker snippet-exit)))))))
3241
3242 (defun yas--points-to-markers (snippet)
3243 "Convert all cons (POINT . MARKER) in SNIPPET to markers. This
3244 is done by setting MARKER to POINT with `set-marker'."
3245 (dolist (field (yas--snippet-fields snippet))
3246 (setf (yas--field-start field) (set-marker (cdr (yas--field-start field))
3247 (car (yas--field-start field))))
3248 (setf (yas--field-end field) (set-marker (cdr (yas--field-end field))
3249 (car (yas--field-end field))))
3250 (dolist (mirror (yas--field-mirrors field))
3251 (setf (yas--mirror-start mirror) (set-marker (cdr (yas--mirror-start mirror))
3252 (car (yas--mirror-start mirror))))
3253 (setf (yas--mirror-end mirror) (set-marker (cdr (yas--mirror-end mirror))
3254 (car (yas--mirror-end mirror))))))
3255 (let ((snippet-exit (yas--snippet-exit snippet)))
3256 (when snippet-exit
3257 (setf (yas--exit-marker snippet-exit) (set-marker (cdr (yas--exit-marker snippet-exit))
3258 (car (yas--exit-marker snippet-exit)))))))
3259
3260 (defun yas--field-contains-point-p (field &optional point)
3261 (let ((point (or point
3262 (point))))
3263 (and (>= point (yas--field-start field))
3264 (<= point (yas--field-end field)))))
3265
3266 (defun yas--field-text-for-display (field)
3267 "Return the propertized display text for field FIELD. "
3268 (buffer-substring (yas--field-start field) (yas--field-end field)))
3269
3270 (defun yas--undo-in-progress ()
3271 "True if some kind of undo is in progress"
3272 (or undo-in-progress
3273 (eq this-command 'undo)
3274 (eq this-command 'redo)))
3275
3276 (defun yas--make-control-overlay (snippet start end)
3277 "Creates the control overlay that surrounds the snippet and
3278 holds the keymap."
3279 (let ((overlay (make-overlay start
3280 end
3281 nil
3282 nil
3283 t)))
3284 (overlay-put overlay 'keymap yas-keymap)
3285 (overlay-put overlay 'priority 100)
3286 (overlay-put overlay 'yas--snippet snippet)
3287 overlay))
3288
3289 (defun yas-skip-and-clear-or-delete-char (&optional field)
3290 "Clears unmodified field if at field start, skips to next tab.
3291
3292 Otherwise deletes a character normally by calling `delete-char'."
3293 (interactive)
3294 (let ((field (or field
3295 (and yas--active-field-overlay
3296 (overlay-buffer yas--active-field-overlay)
3297 (overlay-get yas--active-field-overlay 'yas--field)))))
3298 (cond ((and field
3299 (not (yas--field-modified-p field))
3300 (eq (point) (marker-position (yas--field-start field))))
3301 (yas--skip-and-clear field)
3302 (yas-next-field 1))
3303 (t
3304 (call-interactively 'delete-char)))))
3305
3306 (defun yas--skip-and-clear (field)
3307 "Deletes the region of FIELD and sets it modified state to t"
3308 ;; Just before skipping-and-clearing the field, mark its children
3309 ;; fields as modified, too. If the childen have mirrors-in-fields
3310 ;; this prevents them from updating erroneously (we're skipping and
3311 ;; deleting!).
3312 ;;
3313 (yas--mark-this-and-children-modified field)
3314 (delete-region (yas--field-start field) (yas--field-end field)))
3315
3316 (defun yas--mark-this-and-children-modified (field)
3317 (setf (yas--field-modified-p field) t)
3318 (let ((fom (yas--field-next field)))
3319 (while (and fom
3320 (yas--fom-parent-field fom))
3321 (when (and (eq (yas--fom-parent-field fom) field)
3322 (yas--field-p fom))
3323 (yas--mark-this-and-children-modified fom))
3324 (setq fom (yas--fom-next fom)))))
3325
3326 (defun yas--make-move-active-field-overlay (snippet field)
3327 "Place the active field overlay in SNIPPET's FIELD.
3328
3329 Move the overlay, or create it if it does not exit."
3330 (if (and yas--active-field-overlay
3331 (overlay-buffer yas--active-field-overlay))
3332 (move-overlay yas--active-field-overlay
3333 (yas--field-start field)
3334 (yas--field-end field))
3335 (setq yas--active-field-overlay
3336 (make-overlay (yas--field-start field)
3337 (yas--field-end field)
3338 nil nil t))
3339 (overlay-put yas--active-field-overlay 'priority 100)
3340 (overlay-put yas--active-field-overlay 'face 'yas-field-highlight-face)
3341 (overlay-put yas--active-field-overlay 'yas--snippet snippet)
3342 (overlay-put yas--active-field-overlay 'modification-hooks '(yas--on-field-overlay-modification))
3343 (overlay-put yas--active-field-overlay 'insert-in-front-hooks
3344 '(yas--on-field-overlay-modification))
3345 (overlay-put yas--active-field-overlay 'insert-behind-hooks
3346 '(yas--on-field-overlay-modification))))
3347
3348 (defvar yas--inhibit-overlay-hooks nil
3349 "Bind this temporarity to non-nil to prevent running `yas--on-*-modification'.")
3350
3351 (defun yas--on-field-overlay-modification (overlay after? beg end &optional length)
3352 "Clears the field and updates mirrors, conditionally.
3353
3354 Only clears the field if it hasn't been modified and it point it
3355 at field start. This hook doesn't do anything if an undo is in
3356 progress."
3357 (unless (or yas--inhibit-overlay-hooks
3358 (yas--undo-in-progress))
3359 (let* ((field (overlay-get overlay 'yas--field))
3360 (number (and field (yas--field-number field)))
3361 (snippet (overlay-get yas--active-field-overlay 'yas--snippet)))
3362 (cond (after?
3363 (yas--advance-end-maybe field (overlay-end overlay))
3364 (save-excursion
3365 (yas--field-update-display field snippet))
3366 (yas--update-mirrors snippet))
3367 (field
3368 (when (and (not after?)
3369 (not (yas--field-modified-p field))
3370 (eq (point) (if (markerp (yas--field-start field))
3371 (marker-position (yas--field-start field))
3372 (yas--field-start field))))
3373 (yas--skip-and-clear field))
3374 (setf (yas--field-modified-p field) t))))))
3375 \f
3376 ;;; Apropos protection overlays:
3377 ;;
3378 ;; These exist for nasty users who will try to delete parts of the
3379 ;; snippet outside the active field. Actual protection happens in
3380 ;; `yas--on-protection-overlay-modification'.
3381 ;;
3382 ;; Currently this signals an error which inhibits the command. For
3383 ;; commands that move point (like `kill-line'), point is restored in
3384 ;; the `yas--post-command-handler' using a global
3385 ;; `yas--protection-violation' variable.
3386 ;;
3387 ;; Alternatively, I've experimented with an implementation that
3388 ;; commits the snippet before actually calling `this-command'
3389 ;; interactively, and then signals an eror, which is ignored. but
3390 ;; blocks all other million modification hooks. This presented some
3391 ;; problems with stacked expansion.
3392 ;;
3393 (defun yas--make-move-field-protection-overlays (snippet field)
3394 "Place protection overlays surrounding SNIPPET's FIELD.
3395
3396 Move the overlays, or create them if they do not exit."
3397 (let ((start (yas--field-start field))
3398 (end (yas--field-end field)))
3399 ;; First check if the (1+ end) is contained in the buffer,
3400 ;; otherwise we'll have to do a bit of cheating and silently
3401 ;; insert a newline. the `(1+ (buffer-size))' should prevent this
3402 ;; when using stacked expansion
3403 ;;
3404 (when (< (buffer-size) end)
3405 (save-excursion
3406 (yas--inhibit-overlay-hooks
3407 (goto-char (point-max))
3408 (newline))))
3409 ;; go on to normal overlay creation/moving
3410 ;;
3411 (cond ((and yas--field-protection-overlays
3412 (every #'overlay-buffer yas--field-protection-overlays))
3413 (move-overlay (first yas--field-protection-overlays) (1- start) start)
3414 (move-overlay (second yas--field-protection-overlays) end (1+ end)))
3415 (t
3416 (setq yas--field-protection-overlays
3417 (list (make-overlay (1- start) start nil t nil)
3418 (make-overlay end (1+ end) nil t nil)))
3419 (dolist (ov yas--field-protection-overlays)
3420 (overlay-put ov 'face 'yas--field-debug-face)
3421 (overlay-put ov 'yas--snippet snippet)
3422 ;; (overlay-put ov 'evaporate t)
3423 (overlay-put ov 'modification-hooks '(yas--on-protection-overlay-modification)))))))
3424
3425 (defvar yas--protection-violation nil
3426 "When non-nil, signals attempts to erronesly exit or modify the snippet.
3427
3428 Functions in the `post-command-hook', for example
3429 `yas--post-command-handler' can check it and reset its value to
3430 nil. The variables value is the point where the violation
3431 originated")
3432
3433 (defun yas--on-protection-overlay-modification (overlay after? beg end &optional length)
3434 "Signals a snippet violation, then issues error.
3435
3436 The error should be ignored in `debug-ignored-errors'"
3437 (unless yas--inhibit-overlay-hooks
3438 (cond ((not (or after?
3439 (yas--undo-in-progress)))
3440 (setq yas--protection-violation (point))
3441 (error "Exit the snippet first!")))))
3442
3443 (add-to-list 'debug-ignored-errors "^Exit the snippet first!$")
3444
3445 \f
3446 ;; Snippet expansion and "stacked" expansion:
3447 ;;
3448 ;; Stacked expansion is when you try to expand a snippet when already
3449 ;; inside a snippet expansion.
3450 ;;
3451 ;; The parent snippet does not run its fields modification hooks
3452 ;; (`yas--on-field-overlay-modification' and
3453 ;; `yas--on-protection-overlay-modification') while the child snippet
3454 ;; is active. This means, among other things, that the mirrors of the
3455 ;; parent snippet are not updated, this only happening when one exits
3456 ;; the child snippet.
3457 ;;
3458 ;; Unfortunately, this also puts some ugly (and not fully-tested)
3459 ;; bits of code in `yas-expand-snippet' and
3460 ;; `yas--commit-snippet'. I've tried to mark them with "stacked
3461 ;; expansion:".
3462 ;;
3463 ;; This was thought to be safer in in an undo/redo perpective, but
3464 ;; maybe the correct implementation is to make the globals
3465 ;; `yas--active-field-overlay' and `yas--field-protection-overlays' be
3466 ;; snippet-local and be active even while the child snippet is
3467 ;; running. This would mean a lot of overlay modification hooks
3468 ;; running, but if managed correctly (including overlay priorities)
3469 ;; they should account for all situations...
3470 ;;
3471 (defun yas-expand-snippet (content &optional start end expand-env)
3472 "Expand snippet CONTENT at current point.
3473
3474 Text between START and END will be deleted before inserting
3475 template. EXPAND-ENV is are let-style variable to value bindings
3476 considered when expanding the snippet."
3477 (run-hooks 'yas-before-expand-snippet-hook)
3478
3479 ;;
3480 (let* ((yas-selected-text (or yas-selected-text
3481 (and (region-active-p)
3482 (buffer-substring-no-properties (region-beginning)
3483 (region-end)))))
3484 (start (or start
3485 (and (region-active-p)
3486 (region-beginning))
3487 (point)))
3488 (end (or end
3489 (and (region-active-p)
3490 (region-end))
3491 (point)))
3492 (to-delete (and start
3493 end
3494 (buffer-substring-no-properties start end)))
3495 snippet)
3496 (goto-char start)
3497 (setq yas--indent-original-column (current-column))
3498 ;; Delete the region to delete, this *does* get undo-recorded.
3499 ;;
3500 (when (and to-delete
3501 (> end start))
3502 (delete-region start end))
3503
3504 (cond ((listp content)
3505 ;; x) This is a snippet-command
3506 ;;
3507 (yas--eval-lisp-no-saves content))
3508 (t
3509 ;; x) This is a snippet-snippet :-)
3510 ;;
3511 ;; Narrow the region down to the content, shoosh the
3512 ;; `buffer-undo-list', and create the snippet, the new
3513 ;; snippet updates its mirrors once, so we are left with
3514 ;; some plain text. The undo action for deleting this
3515 ;; plain text will get recorded at the end.
3516 ;;
3517 ;; stacked expansion: also shoosh the overlay modification hooks
3518 (save-restriction
3519 (narrow-to-region start start)
3520 (let ((buffer-undo-list t))
3521 ;; snippet creation might evaluate users elisp, which
3522 ;; might generate errors, so we have to be ready to catch
3523 ;; them mostly to make the undo information
3524 ;;
3525 (setq yas--start-column (save-restriction (widen) (current-column)))
3526 (yas--inhibit-overlay-hooks
3527 (setq snippet
3528 (if expand-env
3529 (eval `(let* ,expand-env
3530 (insert content)
3531 (yas--snippet-create (point-min) (point-max))))
3532 (insert content)
3533 (yas--snippet-create (point-min) (point-max)))))))
3534
3535 ;; stacked-expansion: This checks for stacked expansion, save the
3536 ;; `yas--previous-active-field' and advance its boudary.
3537 ;;
3538 (let ((existing-field (and yas--active-field-overlay
3539 (overlay-buffer yas--active-field-overlay)
3540 (overlay-get yas--active-field-overlay 'yas--field))))
3541 (when existing-field
3542 (setf (yas--snippet-previous-active-field snippet) existing-field)
3543 (yas--advance-end-maybe existing-field (overlay-end yas--active-field-overlay))))
3544
3545 ;; Exit the snippet immediately if no fields
3546 ;;
3547 (unless (yas--snippet-fields snippet)
3548 (yas-exit-snippet snippet))
3549
3550 ;; Push two undo actions: the deletion of the inserted contents of
3551 ;; the new snippet (without the "key") followed by an apply of
3552 ;; `yas--take-care-of-redo' on the newly inserted snippet boundaries
3553 ;;
3554 ;; A small exception, if `yas-also-auto-indent-first-line'
3555 ;; is t and `yas--indent' decides to indent the line to a
3556 ;; point before the actual expansion point, undo would be
3557 ;; messed up. We call the early point "newstart"". case,
3558 ;; and attempt to fix undo.
3559 ;;
3560 (let ((newstart (overlay-start (yas--snippet-control-overlay snippet)))
3561 (end (overlay-end (yas--snippet-control-overlay snippet))))
3562 (when (< newstart start)
3563 (push (cons (make-string (- start newstart) ? ) newstart) buffer-undo-list))
3564 (push (cons newstart end) buffer-undo-list)
3565 (push `(apply yas--take-care-of-redo ,start ,end ,snippet)
3566 buffer-undo-list))
3567 ;; Now, schedule a move to the first field
3568 ;;
3569 (let ((first-field (car (yas--snippet-fields snippet))))
3570 (when first-field
3571 (sit-for 0) ;; fix issue 125
3572 (yas--move-to-field snippet first-field)))
3573 (yas--message 3 "snippet expanded.")
3574 t))))
3575
3576 (defun yas--take-care-of-redo (beg end snippet)
3577 "Commits SNIPPET, which in turn pushes an undo action for
3578 reviving it.
3579
3580 Meant to exit in the `buffer-undo-list'."
3581 ;; slightly optimize: this action is only needed for snippets with
3582 ;; at least one field
3583 (when (yas--snippet-fields snippet)
3584 (yas--commit-snippet snippet)))
3585
3586 (defun yas--snippet-revive (beg end snippet)
3587 "Revives the SNIPPET and creates a control overlay from BEG to
3588 END.
3589
3590 BEG and END are, we hope, the original snippets boudaries. All
3591 the markers/points exiting existing inside SNIPPET should point
3592 to their correct locations *at the time the snippet is revived*.
3593
3594 After revival, push the `yas--take-care-of-redo' in the
3595 `buffer-undo-list'"
3596 ;; Reconvert all the points to markers
3597 ;;
3598 (yas--points-to-markers snippet)
3599 ;; When at least one editable field existed in the zombie snippet,
3600 ;; try to revive the whole thing...
3601 ;;
3602 (let ((target-field (or (yas--snippet-active-field snippet)
3603 (car (yas--snippet-fields snippet)))))
3604 (when target-field
3605 (setf (yas--snippet-control-overlay snippet) (yas--make-control-overlay snippet beg end))
3606 (overlay-put (yas--snippet-control-overlay snippet) 'yas--snippet snippet)
3607
3608 (yas--move-to-field snippet target-field)
3609
3610 (push `(apply yas--take-care-of-redo ,beg ,end ,snippet)
3611 buffer-undo-list))))
3612
3613 (defun yas--snippet-create (begin end)
3614 "Creates a snippet from an template inserted between BEGIN and END.
3615
3616 Returns the newly created snippet."
3617 (let ((snippet (yas--make-snippet)))
3618 (goto-char begin)
3619 (yas--snippet-parse-create snippet)
3620
3621 ;; Sort and link each field
3622 (yas--snippet-sort-fields snippet)
3623
3624 ;; Create keymap overlay for snippet
3625 (setf (yas--snippet-control-overlay snippet)
3626 (yas--make-control-overlay snippet (point-min) (point-max)))
3627
3628 ;; Move to end
3629 (goto-char (point-max))
3630
3631 snippet))
3632
3633 \f
3634 ;;; Apropos adjacencies and "fom's":
3635 ;;
3636 ;; Once the $-constructs bits like "$n" and "${:n" are deleted in the
3637 ;; recently expanded snippet, we might actually have many fields,
3638 ;; mirrors (and the snippet exit) in the very same position in the
3639 ;; buffer. Therefore we need to single-link the
3640 ;; fields-or-mirrors-or-exit (which I have abbreviated to "fom")
3641 ;; according to their original positions in the buffer.
3642 ;;
3643 ;; Then we have operation `yas--advance-end-maybe' and
3644 ;; `yas--advance-start-maybe', which conditionally push the starts and
3645 ;; ends of these foms down the chain.
3646 ;;
3647 ;; This allows for like the printf with the magic ",":
3648 ;;
3649 ;; printf ("${1:%s}\\n"${1:$(if (string-match "%" text) "," "\);")} \
3650 ;; $2${1:$(if (string-match "%" text) "\);" "")}$0
3651 ;;
3652 (defun yas--fom-start (fom)
3653 (cond ((yas--field-p fom)
3654 (yas--field-start fom))
3655 ((yas--mirror-p fom)
3656 (yas--mirror-start fom))
3657 (t
3658 (yas--exit-marker fom))))
3659
3660 (defun yas--fom-end (fom)
3661 (cond ((yas--field-p fom)
3662 (yas--field-end fom))
3663 ((yas--mirror-p fom)
3664 (yas--mirror-end fom))
3665 (t
3666 (yas--exit-marker fom))))
3667
3668 (defun yas--fom-next (fom)
3669 (cond ((yas--field-p fom)
3670 (yas--field-next fom))
3671 ((yas--mirror-p fom)
3672 (yas--mirror-next fom))
3673 (t
3674 (yas--exit-next fom))))
3675
3676 (defun yas--fom-parent-field (fom)
3677 (cond ((yas--field-p fom)
3678 (yas--field-parent-field fom))
3679 ((yas--mirror-p fom)
3680 (yas--mirror-parent-field fom))
3681 (t
3682 nil)))
3683
3684 (defun yas--calculate-adjacencies (snippet)
3685 "Calculate adjacencies for fields or mirrors of SNIPPET.
3686
3687 This is according to their relative positions in the buffer, and
3688 has to be called before the $-constructs are deleted."
3689 (flet ((yas--fom-set-next-fom (fom nextfom)
3690 (cond ((yas--field-p fom)
3691 (setf (yas--field-next fom) nextfom))
3692 ((yas--mirror-p fom)
3693 (setf (yas--mirror-next fom) nextfom))
3694 (t
3695 (setf (yas--exit-next fom) nextfom))))
3696 (yas--compare-fom-begs (fom1 fom2)
3697 (if (= (yas--fom-start fom2) (yas--fom-start fom1))
3698 (yas--mirror-p fom2)
3699 (>= (yas--fom-start fom2) (yas--fom-start fom1))))
3700 (yas--link-foms (fom1 fom2)
3701 (yas--fom-set-next-fom fom1 fom2)))
3702 ;; make some yas--field, yas--mirror and yas--exit soup
3703 (let ((soup))
3704 (when (yas--snippet-exit snippet)
3705 (push (yas--snippet-exit snippet) soup))
3706 (dolist (field (yas--snippet-fields snippet))
3707 (push field soup)
3708 (dolist (mirror (yas--field-mirrors field))
3709 (push mirror soup)))
3710 (setq soup
3711 (sort soup
3712 #'yas--compare-fom-begs))
3713 (when soup
3714 (reduce #'yas--link-foms soup)))))
3715
3716 (defun yas--calculate-mirrors-in-fields (snippet mirror)
3717 "Attempt to assign a parent field of SNIPPET to the mirror MIRROR.
3718
3719 Use the tighest containing field if more than one field contains
3720 the mirror. Intended to be called *before* the dollar-regions are
3721 deleted."
3722 (let ((min (point-min))
3723 (max (point-max)))
3724 (dolist (field (yas--snippet-fields snippet))
3725 (when (and (<= (yas--field-start field) (yas--mirror-start mirror))
3726 (<= (yas--mirror-end mirror) (yas--field-end field))
3727 (< min (yas--field-start field))
3728 (< (yas--field-end field) max))
3729 (setq min (yas--field-start field)
3730 max (yas--field-end field))
3731 (setf (yas--mirror-parent-field mirror) field)))))
3732
3733 (defun yas--advance-end-maybe (fom newend)
3734 "Maybe advance FOM's end to NEWEND if it needs it.
3735
3736 If it does, also:
3737
3738 * call `yas--advance-start-maybe' on FOM's next fom.
3739
3740 * in case FOM is field call `yas--advance-end-maybe' on its parent
3741 field
3742
3743 Also, if FOM is an exit-marker, always call
3744 `yas--advance-start-maybe' on its next fom. This is beacuse
3745 exit-marker have identical start and end markers.
3746
3747 "
3748 (cond ((and fom (< (yas--fom-end fom) newend))
3749 (set-marker (yas--fom-end fom) newend)
3750 (yas--advance-start-maybe (yas--fom-next fom) newend)
3751 (yas--advance-end-of-parents-maybe (yas--fom-parent-field fom) newend))
3752 ((yas--exit-p fom)
3753 (yas--advance-start-maybe (yas--fom-next fom) newend))))
3754
3755 (defun yas--advance-start-maybe (fom newstart)
3756 "Maybe advance FOM's start to NEWSTART if it needs it.
3757
3758 If it does, also call `yas--advance-end-maybe' on FOM."
3759 (when (and fom (< (yas--fom-start fom) newstart))
3760 (set-marker (yas--fom-start fom) newstart)
3761 (yas--advance-end-maybe fom newstart)))
3762
3763 (defun yas--advance-end-of-parents-maybe (field newend)
3764 "Like `yas--advance-end-maybe' but for parent fields.
3765
3766 Only works for fields and doesn't care about the start of the
3767 next FOM. Works its way up recursively for parents of parents."
3768 (when (and field
3769 (< (yas--field-end field) newend))
3770 (set-marker (yas--field-end field) newend)
3771 (yas--advance-end-of-parents-maybe (yas--field-parent-field field) newend)))
3772
3773 (defvar yas--dollar-regions nil
3774 "When expanding the snippet the \"parse-create\" functions add
3775 cons cells to this var")
3776
3777 (defvar yas--backquote-markers-and-strings nil
3778 "List of (MARKER . STRING) marking where the the values
3779 from backquoted lisp expressions should be inserted at the end of
3780 expansion" )
3781
3782 (defun yas--snippet-parse-create (snippet)
3783 "Parse a recently inserted snippet template, creating all
3784 necessary fields, mirrors and exit points.
3785
3786 Meant to be called in a narrowed buffer, does various passes"
3787 (let ((parse-start (point)))
3788 ;; Reset the yas--dollar-regions
3789 ;;
3790 (setq yas--dollar-regions nil)
3791 ;; protect just the backquotes
3792 ;;
3793 (yas--protect-escapes nil '(?`))
3794 ;; replace all backquoted expressions
3795 ;;
3796 (goto-char parse-start)
3797 (yas--save-backquotes)
3798 ;; protect escaped characters
3799 ;;
3800 (yas--protect-escapes)
3801 ;; parse fields with {}
3802 ;;
3803 (goto-char parse-start)
3804 (yas--field-parse-create snippet)
3805 ;; parse simple mirrors and fields
3806 ;;
3807 (goto-char parse-start)
3808 (yas--simple-mirror-parse-create snippet)
3809 ;; parse mirror transforms
3810 ;;
3811 (goto-char parse-start)
3812 (yas--transform-mirror-parse-create snippet)
3813 ;; calculate adjacencies of fields and mirrors
3814 ;;
3815 (yas--calculate-adjacencies snippet)
3816 ;; Delete $-constructs
3817 ;;
3818 (yas--delete-regions yas--dollar-regions)
3819 ;; restore backquoted expression values
3820 ;;
3821 (yas--restore-backquotes)
3822 ;; restore escapes
3823 ;;
3824 (goto-char parse-start)
3825 (yas--restore-escapes)
3826 ;; update mirrors for the first time
3827 ;;
3828 (yas--update-mirrors snippet)
3829 ;; indent the best we can
3830 ;;
3831 (goto-char parse-start)
3832 (yas--indent snippet)))
3833
3834 (defun yas--indent-according-to-mode (snippet-markers)
3835 "Indent current line according to mode, preserving
3836 SNIPPET-MARKERS."
3837 ;;; Apropos indenting problems....
3838 ;;
3839 ;; `indent-according-to-mode' uses whatever `indent-line-function'
3840 ;; is available. Some implementations of these functions delete text
3841 ;; before they insert. If there happens to be a marker just after
3842 ;; the text being deleted, the insertion actually happens after the
3843 ;; marker, which misplaces it.
3844 ;;
3845 ;; This would also happen if we had used overlays with the
3846 ;; `front-advance' property set to nil.
3847 ;;
3848 ;; This is why I have these `trouble-markers', they are the ones at
3849 ;; they are the ones at the first non-whitespace char at the line
3850 ;; (i.e. at `yas--real-line-beginning'. After indentation takes place
3851 ;; we should be at the correct to restore them to. All other
3852 ;; non-trouble-markers have been *pushed* and don't need special
3853 ;; attention.
3854 ;;
3855 (goto-char (yas--real-line-beginning))
3856 (let ((trouble-markers (remove-if-not #'(lambda (marker)
3857 (= marker (point)))
3858 snippet-markers)))
3859 (save-restriction
3860 (widen)
3861 (condition-case err
3862 (indent-according-to-mode)
3863 (error (yas--message 3 "Warning: `yas--indent-according-to-mode' having problems running %s" indent-line-function)
3864 nil)))
3865 (mapc #'(lambda (marker)
3866 (set-marker marker (point)))
3867 trouble-markers)))
3868
3869 (defvar yas--indent-original-column nil)
3870 (defun yas--indent (snippet)
3871 (let ((snippet-markers (yas--collect-snippet-markers snippet)))
3872 ;; Look for those $>
3873 (save-excursion
3874 (while (re-search-forward "$>" nil t)
3875 (delete-region (match-beginning 0) (match-end 0))
3876 (when (not (eq yas-indent-line 'auto))
3877 (yas--indent-according-to-mode snippet-markers))))
3878 ;; Now do stuff for 'fixed and 'auto
3879 (save-excursion
3880 (cond ((eq yas-indent-line 'fixed)
3881 (while (and (zerop (forward-line))
3882 (zerop (current-column)))
3883 (indent-to-column yas--indent-original-column)))
3884 ((eq yas-indent-line 'auto)
3885 (let ((end (set-marker (make-marker) (point-max)))
3886 (indent-first-line-p yas-also-auto-indent-first-line))
3887 (while (and (zerop (if indent-first-line-p
3888 (prog1
3889 (forward-line 0)
3890 (setq indent-first-line-p nil))
3891 (forward-line 1)))
3892 (not (eobp))
3893 (<= (point) end))
3894 (yas--indent-according-to-mode snippet-markers))))
3895 (t
3896 nil)))))
3897
3898 (defun yas--collect-snippet-markers (snippet)
3899 "Make a list of all the markers used by SNIPPET."
3900 (let (markers)
3901 (dolist (field (yas--snippet-fields snippet))
3902 (push (yas--field-start field) markers)
3903 (push (yas--field-end field) markers)
3904 (dolist (mirror (yas--field-mirrors field))
3905 (push (yas--mirror-start mirror) markers)
3906 (push (yas--mirror-end mirror) markers)))
3907 (let ((snippet-exit (yas--snippet-exit snippet)))
3908 (when (and snippet-exit
3909 (marker-buffer (yas--exit-marker snippet-exit)))
3910 (push (yas--exit-marker snippet-exit) markers)))
3911 markers))
3912
3913 (defun yas--real-line-beginning ()
3914 (let ((c (char-after (line-beginning-position)))
3915 (n (line-beginning-position)))
3916 (while (or (eql c ?\ )
3917 (eql c ?\t))
3918 (incf n)
3919 (setq c (char-after n)))
3920 n))
3921
3922 (defun yas--escape-string (escaped)
3923 (concat "YASESCAPE" (format "%d" escaped) "PROTECTGUARD"))
3924
3925 (defun yas--protect-escapes (&optional text escaped)
3926 "Protect all escaped characters with their numeric ASCII value.
3927
3928 With optional string TEXT do it in string instead of buffer."
3929 (let ((changed-text text)
3930 (text-provided-p text))
3931 (mapc #'(lambda (escaped)
3932 (setq changed-text
3933 (yas--replace-all (concat "\\" (char-to-string escaped))
3934 (yas--escape-string escaped)
3935 (when text-provided-p changed-text))))
3936 (or escaped yas--escaped-characters))
3937 changed-text))
3938
3939 (defun yas--restore-escapes (&optional text escaped)
3940 "Restore all escaped characters from their numeric ASCII value.
3941
3942 With optional string TEXT do it in string instead of the buffer."
3943 (let ((changed-text text)
3944 (text-provided-p text))
3945 (mapc #'(lambda (escaped)
3946 (setq changed-text
3947 (yas--replace-all (yas--escape-string escaped)
3948 (char-to-string escaped)
3949 (when text-provided-p changed-text))))
3950 (or escaped yas--escaped-characters))
3951 changed-text))
3952
3953 (defun yas--save-backquotes ()
3954 "Save all the \"`(lisp-expression)`\"-style expression
3955 with their evaluated value into `yas--backquote-markers-and-strings'"
3956 (while (re-search-forward yas--backquote-lisp-expression-regexp nil t)
3957 (let ((current-string (match-string-no-properties 1)) transformed)
3958 (delete-region (match-beginning 0) (match-end 0))
3959 (setq transformed (yas--eval-lisp (yas--read-lisp (yas--restore-escapes current-string '(?`)))))
3960 (goto-char (match-beginning 0))
3961 (when transformed
3962 (let ((marker (make-marker)))
3963 (insert "Y") ;; quite horrendous, I love it :)
3964 (set-marker marker (point))
3965 (insert "Y")
3966 (push (cons marker transformed) yas--backquote-markers-and-strings))))))
3967
3968 (defun yas--restore-backquotes ()
3969 "Replace all the markers in
3970 `yas--backquote-markers-and-strings' with their values"
3971 (while yas--backquote-markers-and-strings
3972 (let* ((marker-and-string (pop yas--backquote-markers-and-strings))
3973 (marker (car marker-and-string))
3974 (string (cdr marker-and-string)))
3975 (save-excursion
3976 (goto-char marker)
3977 (delete-char -1)
3978 (insert string)
3979 (delete-char 1)
3980 (set-marker marker nil)))))
3981
3982 (defun yas--scan-sexps (from count)
3983 (condition-case err
3984 (with-syntax-table (standard-syntax-table)
3985 (scan-sexps from count))
3986 (error
3987 nil)))
3988
3989 (defun yas--make-marker (pos)
3990 "Create a marker at POS with `nil' `marker-insertion-type'"
3991 (let ((marker (set-marker (make-marker) pos)))
3992 (set-marker-insertion-type marker nil)
3993 marker))
3994
3995 (defun yas--field-parse-create (snippet &optional parent-field)
3996 "Parse most field expressions, except for the simple one \"$n\".
3997
3998 The following count as a field:
3999
4000 * \"${n: text}\", for a numbered field with default text, as long as N is not 0;
4001
4002 * \"${n: text$(expression)}, the same with a lisp expression;
4003 this is caught with the curiously named `yas--multi-dollar-lisp-expression-regexp'
4004
4005 * the same as above but unnumbered, (no N:) and number is calculated automatically.
4006
4007 When multiple expressions are found, only the last one counts."
4008 ;;
4009 (save-excursion
4010 (while (re-search-forward yas--field-regexp nil t)
4011 (let* ((real-match-end-0 (yas--scan-sexps (1+ (match-beginning 0)) 1))
4012 (number (and (match-string-no-properties 1)
4013 (string-to-number (match-string-no-properties 1))))
4014 (brand-new-field (and real-match-end-0
4015 ;; break if on "$(" immediately
4016 ;; after the ":", this will be
4017 ;; caught as a mirror with
4018 ;; transform later.
4019 (not (save-match-data
4020 (eq (string-match "$[ \t\n]*("
4021 (match-string-no-properties 2)) 0)))
4022 ;; allow ${0: some exit text}
4023 ;; (not (and number (zerop number)))
4024 (yas--make-field number
4025 (yas--make-marker (match-beginning 2))
4026 (yas--make-marker (1- real-match-end-0))
4027 parent-field))))
4028 (when brand-new-field
4029 (goto-char real-match-end-0)
4030 (push (cons (1- real-match-end-0) real-match-end-0)
4031 yas--dollar-regions)
4032 (push (cons (match-beginning 0) (match-beginning 2))
4033 yas--dollar-regions)
4034 (push brand-new-field (yas--snippet-fields snippet))
4035 (save-excursion
4036 (save-restriction
4037 (narrow-to-region (yas--field-start brand-new-field) (yas--field-end brand-new-field))
4038 (goto-char (point-min))
4039 (yas--field-parse-create snippet brand-new-field)))))))
4040 ;; if we entered from a parent field, now search for the
4041 ;; `yas--multi-dollar-lisp-expression-regexp'. THis is used for
4042 ;; primary field transformations
4043 ;;
4044 (when parent-field
4045 (save-excursion
4046 (while (re-search-forward yas--multi-dollar-lisp-expression-regexp nil t)
4047 (let* ((real-match-end-1 (yas--scan-sexps (match-beginning 1) 1)))
4048 ;; commit the primary field transformation if:
4049 ;;
4050 ;; 1. we don't find it in yas--dollar-regions (a subnested
4051 ;; field) might have already caught it.
4052 ;;
4053 ;; 2. we really make sure we have either two '$' or some
4054 ;; text and a '$' after the colon ':'. This is a FIXME: work
4055 ;; my regular expressions and end these ugly hacks.
4056 ;;
4057 (when (and real-match-end-1
4058 (not (member (cons (match-beginning 0)
4059 real-match-end-1)
4060 yas--dollar-regions))
4061 (not (eq ?:
4062 (char-before (1- (match-beginning 1))))))
4063 (let ((lisp-expression-string (buffer-substring-no-properties (match-beginning 1)
4064 real-match-end-1)))
4065 (setf (yas--field-transform parent-field)
4066 (yas--read-lisp (yas--restore-escapes lisp-expression-string))))
4067 (push (cons (match-beginning 0) real-match-end-1)
4068 yas--dollar-regions)))))))
4069
4070 (defun yas--transform-mirror-parse-create (snippet)
4071 "Parse the \"${n:$(lisp-expression)}\" mirror transformations."
4072 (while (re-search-forward yas--transform-mirror-regexp nil t)
4073 (let* ((real-match-end-0 (yas--scan-sexps (1+ (match-beginning 0)) 1))
4074 (number (string-to-number (match-string-no-properties 1)))
4075 (field (and number
4076 (not (zerop number))
4077 (yas--snippet-find-field snippet number)))
4078 (brand-new-mirror
4079 (and real-match-end-0
4080 field
4081 (yas--make-mirror (yas--make-marker (match-beginning 0))
4082 (yas--make-marker (match-beginning 0))
4083 (yas--read-lisp
4084 (yas--restore-escapes
4085 (buffer-substring-no-properties (match-beginning 2)
4086 (1- real-match-end-0))))))))
4087 (when brand-new-mirror
4088 (push brand-new-mirror
4089 (yas--field-mirrors field))
4090 (yas--calculate-mirrors-in-fields snippet brand-new-mirror)
4091 (push (cons (match-beginning 0) real-match-end-0) yas--dollar-regions)))))
4092
4093 (defun yas--simple-mirror-parse-create (snippet)
4094 "Parse the simple \"$n\" fields/mirrors/exitmarkers."
4095 (while (re-search-forward yas--simple-mirror-regexp nil t)
4096 (let ((number (string-to-number (match-string-no-properties 1))))
4097 (cond ((zerop number)
4098
4099 (setf (yas--snippet-exit snippet)
4100 (yas--make-exit (yas--make-marker (match-end 0))))
4101 (save-excursion
4102 (goto-char (match-beginning 0))
4103 (when yas-wrap-around-region
4104 (cond (yas-selected-text
4105 (insert yas-selected-text))
4106 ((and (eq yas-wrap-around-region 'cua)
4107 cua-mode
4108 (get-register ?0))
4109 (insert (prog1 (get-register ?0)
4110 (set-register ?0 nil))))))
4111 (push (cons (point) (yas--exit-marker (yas--snippet-exit snippet)))
4112 yas--dollar-regions)))
4113 (t
4114 (let ((field (yas--snippet-find-field snippet number)))
4115 (if field
4116 (let ((brand-new-mirror (yas--make-mirror
4117 (yas--make-marker (match-beginning 0))
4118 (yas--make-marker (match-beginning 0))
4119 nil)))
4120 (push brand-new-mirror
4121 (yas--field-mirrors field))
4122 (yas--calculate-mirrors-in-fields snippet brand-new-mirror))
4123 (push (yas--make-field number
4124 (yas--make-marker (match-beginning 0))
4125 (yas--make-marker (match-beginning 0))
4126 nil)
4127 (yas--snippet-fields snippet))))
4128 (push (cons (match-beginning 0) (match-end 0))
4129 yas--dollar-regions))))))
4130
4131 (defun yas--delete-regions (regions)
4132 "Sort disjuct REGIONS by start point, then delete from the back."
4133 (mapc #'(lambda (reg)
4134 (delete-region (car reg) (cdr reg)))
4135 (sort regions
4136 #'(lambda (r1 r2)
4137 (>= (car r1) (car r2))))))
4138
4139 (defun yas--update-mirrors (snippet)
4140 "Updates all the mirrors of SNIPPET."
4141 (save-excursion
4142 (dolist (field-and-mirror (sort
4143 ;; make a list of ((F1 . M1) (F1 . M2) (F2 . M3) (F2 . M4) ...)
4144 ;; where F is the field that M is mirroring
4145 ;;
4146 (mapcan #'(lambda (field)
4147 (mapcar #'(lambda (mirror)
4148 (cons field mirror))
4149 (yas--field-mirrors field)))
4150 (yas--snippet-fields snippet))
4151 ;; then sort this list so that entries with mirrors with parent
4152 ;; fields appear before. This was important for fixing #290, and
4153 ;; luckily also handles the case where a mirror in a field causes
4154 ;; another mirror to need reupdating
4155 ;;
4156 #'(lambda (field-and-mirror1 field-and-mirror2)
4157 (yas--mirror-parent-field (cdr field-and-mirror1)))))
4158 (let* ((field (car field-and-mirror))
4159 (mirror (cdr field-and-mirror))
4160 (parent-field (yas--mirror-parent-field mirror)))
4161 ;; before updating a mirror with a parent-field, maybe advance
4162 ;; its start (#290)
4163 ;;
4164 (when parent-field
4165 (yas--advance-start-maybe mirror (yas--fom-start parent-field)))
4166 ;; update this mirror
4167 ;;
4168 (yas--mirror-update-display mirror field)
4169 ;; `yas--place-overlays' is needed if the active field and
4170 ;; protected overlays have been changed because of insertions
4171 ;; in `yas--mirror-update-display'
4172 ;;
4173 (when (eq field (yas--snippet-active-field snippet))
4174 (yas--place-overlays snippet field))))))
4175
4176 (defun yas--mirror-update-display (mirror field)
4177 "Update MIRROR according to FIELD (and mirror transform)."
4178
4179 (let* ((mirror-parent-field (yas--mirror-parent-field mirror))
4180 (reflection (and (not (and mirror-parent-field
4181 (yas--field-modified-p mirror-parent-field)))
4182 (or (yas--apply-transform mirror field 'empty-on-nil)
4183 (yas--field-text-for-display field)))))
4184 (when (and reflection
4185 (not (string= reflection (buffer-substring-no-properties (yas--mirror-start mirror)
4186 (yas--mirror-end mirror)))))
4187 (goto-char (yas--mirror-start mirror))
4188 (yas--inhibit-overlay-hooks
4189 (insert reflection))
4190 (if (> (yas--mirror-end mirror) (point))
4191 (delete-region (point) (yas--mirror-end mirror))
4192 (set-marker (yas--mirror-end mirror) (point))
4193 (yas--advance-start-maybe (yas--mirror-next mirror) (point))
4194 ;; super-special advance
4195 (yas--advance-end-of-parents-maybe mirror-parent-field (point))))))
4196
4197 (defun yas--field-update-display (field snippet)
4198 "Much like `yas--mirror-update-display', but for fields"
4199 (when (yas--field-transform field)
4200 (let ((transformed (and (not (eq (yas--field-number field) 0))
4201 (yas--apply-transform field field)))
4202 (point (point)))
4203 (when (and transformed
4204 (not (string= transformed (buffer-substring-no-properties (yas--field-start field)
4205 (yas--field-end field)))))
4206 (setf (yas--field-modified-p field) t)
4207 (goto-char (yas--field-start field))
4208 (yas--inhibit-overlay-hooks
4209 (insert transformed)
4210 (if (> (yas--field-end field) (point))
4211 (delete-region (point) (yas--field-end field))
4212 (set-marker (yas--field-end field) (point))
4213 (yas--advance-start-maybe (yas--field-next field) (point)))
4214 t)))))
4215
4216 \f
4217 ;;; Post-command hook:
4218
4219 (defun yas--post-command-handler ()
4220 "Handles various yasnippet conditions after each command."
4221 (cond (yas--protection-violation
4222 (goto-char yas--protection-violation)
4223 (setq yas--protection-violation nil))
4224 ((eq 'undo this-command)
4225 ;;
4226 ;; After undo revival the correct field is sometimes not
4227 ;; restored correctly, this condition handles that
4228 ;;
4229 (let* ((snippet (car (yas--snippets-at-point)))
4230 (target-field (and snippet
4231 (find-if-not #'(lambda (field)
4232 (yas--field-probably-deleted-p snippet field))
4233 (remove nil
4234 (cons (yas--snippet-active-field snippet)
4235 (yas--snippet-fields snippet)))))))
4236 (when target-field
4237 (yas--move-to-field snippet target-field))))
4238 ((not (yas--undo-in-progress))
4239 ;; When not in an undo, check if we must commit the snippet
4240 ;; (user exited it).
4241 (yas--check-commit-snippet))))
4242 \f
4243 ;;; Fancy docs:
4244 ;;
4245 ;; The docstrings for some functions are generated dynamically
4246 ;; depending on the context.
4247 ;;
4248 (put 'yas-expand 'function-documentation
4249 '(yas--expand-from-trigger-key-doc))
4250 (defun yas--expand-from-trigger-key-doc ()
4251 "A doc synthethizer for `yas--expand-from-trigger-key-doc'."
4252 (let ((fallback-description
4253 (cond ((eq yas-fallback-behavior 'call-other-command)
4254 (let* ((yas-minor-mode nil)
4255 (fallback (key-binding (read-kbd-macro (yas--trigger-key-for-fallback)))))
4256 (or (and fallback
4257 (format " call command `%s'." (pp-to-string fallback)))
4258 " do nothing.")))
4259 ((eq yas-fallback-behavior 'return-nil)
4260 ", do nothing.")
4261 (t
4262 ", defer to `yas--fallback-behaviour' :-)"))))
4263 (concat "Expand a snippet before point. If no snippet
4264 expansion is possible,"
4265 fallback-description
4266 "\n\nOptional argument FIELD is for non-interactive use and is an
4267 object satisfying `yas--field-p' to restrict the expansion to.")))
4268
4269 (put 'yas-expand-from-keymap 'function-documentation '(yas--expand-from-keymap-doc))
4270 (defun yas--expand-from-keymap-doc ()
4271 "A doc synthethizer for `yas--expand-from-keymap-doc'."
4272 (add-hook 'temp-buffer-show-hook 'yas--snippet-description-finish-runonce)
4273 (concat "Expand/run snippets from keymaps, possibly falling back to original binding.\n"
4274 (when (eq this-command 'describe-key)
4275 (let* ((vec (this-single-command-keys))
4276 (templates (mapcan #'(lambda (table)
4277 (yas--fetch table vec))
4278 (yas--get-snippet-tables)))
4279 (yas--direct-keymaps nil)
4280 (fallback (key-binding vec)))
4281 (concat "In this case, "
4282 (when templates
4283 (concat "these snippets are bound to this key:\n"
4284 (yas--template-pretty-list templates)
4285 "\n\nIf none of these expands, "))
4286 (or (and fallback
4287 (format "fallback `%s' will be called." (pp-to-string fallback)))
4288 "no fallback keybinding is called."))))))
4289
4290 (defun yas--template-pretty-list (templates)
4291 (let ((acc)
4292 (yas-buffer-local-condition 'always))
4293 (dolist (plate templates)
4294 (setq acc (concat acc "\n*) "
4295 (propertize (concat "\\\\snippet `" (car plate) "'")
4296 'yasnippet (cdr plate)))))
4297 acc))
4298
4299 (define-button-type 'help-snippet-def
4300 :supertype 'help-xref
4301 'help-function (lambda (template) (yas--visit-snippet-file-1 template))
4302 'help-echo (purecopy "mouse-2, RET: find snippets's definition"))
4303
4304 (defun yas--snippet-description-finish-runonce ()
4305 "Final adjustments for the help buffer when snippets are concerned."
4306 (yas--create-snippet-xrefs)
4307 (remove-hook 'temp-buffer-show-hook 'yas--snippet-description-finish-runonce))
4308
4309 (defun yas--create-snippet-xrefs ()
4310 (save-excursion
4311 (goto-char (point-min))
4312 (while (search-forward-regexp "\\\\\\\\snippet[ \s\t]+`\\([^']+\\)'" nil t)
4313 (let ((template (get-text-property (match-beginning 1)
4314 'yasnippet)))
4315 (when template
4316 (help-xref-button 1 'help-snippet-def template)
4317 (kill-region (match-end 1) (match-end 0))
4318 (kill-region (match-beginning 0) (match-beginning 1)))))))
4319
4320 (defun yas--expand-uuid (mode-symbol uuid &optional start end expand-env)
4321 "Expand a snippet registered in MODE-SYMBOL's table with UUID.
4322
4323 Remaining args as in `yas-expand-snippet'."
4324 (let* ((table (gethash mode-symbol yas--tables))
4325 (yas--current-template (and table
4326 (gethash uuid (yas--table-uuidhash table)))))
4327 (when yas--current-template
4328 (yas-expand-snippet (yas--template-content yas--current-template)))))
4329 \f
4330 ;;; Utils
4331
4332 (defvar yas-verbosity 4
4333 "Log level for `yas--message' 4 means trace most anything, 0 means nothing.")
4334
4335 (defun yas--message (level message &rest args)
4336 (when (> yas-verbosity level)
4337 (message (apply #'yas--format message args))))
4338
4339 (defun yas--format (format-control &rest format-args)
4340 (apply #'format (concat "[yas] " format-control) format-args))
4341
4342 \f
4343 ;;; Some hacks:
4344 ;;
4345 ;; The functions
4346 ;;
4347 ;; `locate-dominating-file'
4348 ;; `region-active-p'
4349 ;;
4350 ;; added for compatibility in emacsen < 23
4351 (unless (>= emacs-major-version 23)
4352 (unless (fboundp 'region-active-p)
4353 (defun region-active-p () (and transient-mark-mode mark-active)))
4354
4355 (unless (fboundp 'locate-dominating-file)
4356 (defvar locate-dominating-stop-dir-regexp
4357 "\\`\\(?:[\\/][\\/][^\\/]+[\\/]\\|/\\(?:net\\|afs\\|\\.\\.\\.\\)/\\)\\'"
4358 "Regexp of directory names which stop the search in `locate-dominating-file'.
4359 Any directory whose name matches this regexp will be treated like
4360 a kind of root directory by `locate-dominating-file' which will stop its search
4361 when it bumps into it.
4362 The default regexp prevents fruitless and time-consuming attempts to find
4363 special files in directories in which filenames are interpreted as hostnames,
4364 or mount points potentially requiring authentication as a different user.")
4365
4366 (defun locate-dominating-file (file name)
4367 "Look up the directory hierarchy from FILE for a file named NAME.
4368 Stop at the first parent directory containing a file NAME,
4369 and return the directory. Return nil if not found."
4370 ;; We used to use the above locate-dominating-files code, but the
4371 ;; directory-files call is very costly, so we're much better off doing
4372 ;; multiple calls using the code in here.
4373 ;;
4374 ;; Represent /home/luser/foo as ~/foo so that we don't try to look for
4375 ;; `name' in /home or in /.
4376 (setq file (abbreviate-file-name file))
4377 (let ((root nil)
4378 (prev-file file)
4379 ;; `user' is not initialized outside the loop because
4380 ;; `file' may not exist, so we may have to walk up part of the
4381 ;; hierarchy before we find the "initial UUID".
4382 (user nil)
4383 try)
4384 (while (not (or root
4385 (null file)
4386 ;; FIXME: Disabled this heuristic because it is sometimes
4387 ;; inappropriate.
4388 ;; As a heuristic, we stop looking up the hierarchy of
4389 ;; directories as soon as we find a directory belonging
4390 ;; to another user. This should save us from looking in
4391 ;; things like /net and /afs. This assumes that all the
4392 ;; files inside a project belong to the same user.
4393 ;; (let ((prev-user user))
4394 ;; (setq user (nth 2 (file-attributes file)))
4395 ;; (and prev-user (not (equal user prev-user))))
4396 (string-match locate-dominating-stop-dir-regexp file)))
4397 (setq try (file-exists-p (expand-file-name name file)))
4398 (cond (try (setq root file))
4399 ((equal file (setq prev-file file
4400 file (file-name-directory
4401 (directory-file-name file))))
4402 (setq file nil))))
4403 root))))
4404
4405 ;; `c-neutralize-syntax-in-CPP` sometimes fires "End of Buffer" error
4406 ;; (when it execute forward-char) and interrupt the after change
4407 ;; hook. Thus prevent the insert-behind hook of yasnippet to be
4408 ;; invoked. Here's a way to reproduce it:
4409
4410 ;; # open a *new* Emacs.
4411 ;; # load yasnippet.
4412 ;; # open a *new* .cpp file.
4413 ;; # input "inc" and press TAB to expand the snippet.
4414 ;; # select the `#include <...>` snippet.
4415 ;; # type inside `<>`
4416
4417 (defadvice c-neutralize-syntax-in-CPP
4418 (around yas--mp/c-neutralize-syntax-in-CPP activate)
4419 "Adviced `c-neutralize-syntax-in-CPP' to properly
4420 handle the end-of-buffer error fired in it by calling
4421 `forward-char' at the end of buffer."
4422 (condition-case err
4423 ad-do-it
4424 (error (message (error-message-string err)))))
4425
4426 ;; disable c-electric-* serial command in YAS fields
4427 (add-hook 'c-mode-common-hook
4428 '(lambda ()
4429 (dolist (k '(":" ">" ";" "<" "{" "}"))
4430 (define-key (symbol-value (make-local-variable 'yas-keymap))
4431 k 'self-insert-command))))
4432 \f
4433 ;;; Backward compatibility to to yasnippet <= 0.7
4434 (defvar yas--exported-syms '(;; `defcustom's
4435 ;;
4436 yas-snippet-dirs
4437 yas-prompt-functions
4438 yas-indent-line
4439 yas-also-auto-indent-first-line
4440 yas-snippet-revival
4441 yas-trigger-key
4442 yas-next-field-key
4443 yas-prev-field-key
4444 yas-skip-and-clear-key
4445 yas-triggers-in-field
4446 yas-fallback-behavior
4447 yas-choose-keys-first
4448 yas-choose-tables-first
4449 yas-use-menu
4450 yas-trigger-symbol
4451 yas-wrap-around-region
4452 yas-good-grace
4453 yas-visit-from-menu
4454 yas-expand-only-for-last-commands
4455 yas-field-highlight-face
4456
4457 ;; these vars can be customized as well
4458 ;;
4459 yas-keymap
4460 yas-verbosity
4461 yas-extra-modes
4462 yas-key-syntaxes
4463 yas-after-exit-snippet-hook
4464 yas-before-expand-snippet-hook
4465 yas-buffer-local-condition
4466
4467 ;; prompting functions
4468 ;;
4469 yas-x-prompt
4470 yas-ido-prompt
4471 yas-no-prompt
4472 yas-completing-prompt
4473 yas-dropdown-prompt
4474
4475 ;; interactive functions
4476 ;;
4477 yas-expand
4478 yas-minor-mode
4479 yas-global-mode
4480 yas-direct-keymaps-reload
4481 yas-minor-mode-on
4482 yas-load-directory
4483 yas-reload-all
4484 yas-compile-directory
4485 yas-recompile-all
4486 yas-about
4487 yas-expand-from-trigger-key
4488 yas-expand-from-keymap
4489 yas-insert-snippet
4490 yas-visit-snippet-file
4491 yas-new-snippet
4492 yas-load-snippet-buffer
4493 yas-tryout-snippet
4494 yas-describe-tables
4495 yas-next-field-or-maybe-expand
4496 yas-next-field
4497 yas-prev-field
4498 yas-abort-snippet
4499 yas-exit-snippet
4500 yas-exit-all-snippets
4501 yas-skip-and-clear-or-delete-char
4502
4503 ;; symbols that I "exported" for use
4504 ;; in snippets and hookage
4505 ;;
4506 yas-expand-snippet
4507 yas-define-snippets
4508 yas-define-menu
4509 yas-snippet-beg
4510 yas-snippet-end
4511 yas-modified-p
4512 yas-moving-away-p
4513 yas-text
4514 yas-substr
4515 yas-choose-value
4516 yas-key-to-value
4517 yas-throw
4518 yas-verify-value
4519 yas-field-value
4520 yas-text
4521 yas-selected-text
4522 yas-default-from-field
4523 yas-inside-string
4524 yas-unimplemented
4525 yas-define-condition-cache
4526 yas-hippie-try-expand
4527 yas-active-keys
4528
4529 ;; debug definitions
4530 ;; yas-debug-snippet-vars
4531 ;; yas-exterminate-package
4532 ;; yas-debug-test
4533
4534 ;; testing definitions
4535 ;; yas-should-expand
4536 ;; yas-should-not-expand
4537 ;; yas-mock-insert
4538 ;; yas-make-file-or-dirs
4539 ;; yas-variables
4540 ;; yas-saving-variables
4541 ;; yas-call-with-snippet-dirs
4542 ;; yas-with-snippet-dirs
4543 )
4544 "Exported yassnippet symbols.
4545
4546 i.e. ones that I will try to keep in future yasnippet versions
4547 and ones that other elisp libraries can more or less safely rely
4548 upon.")
4549
4550 (defvar yas--dont-backport '(yas-active-keys)
4551 "Exported symbols that don't map back to \"yas/*\" variants")
4552
4553 (dolist (sym (set-difference yas--exported-syms yas--dont-backport))
4554 (let ((backported (intern (replace-regexp-in-string "^yas-" "yas/" (symbol-name sym)))))
4555 (when (boundp sym)
4556 (make-obsolete-variable backported sym "yasnippet 0.8")
4557 (defvaralias backported sym))
4558 (when (fboundp sym)
4559 (make-obsolete backported sym "yasnippet 0.8")
4560 (defalias backported sym))))
4561
4562 \f
4563 (provide 'yasnippet)
4564
4565 ;;; yasnippet.el ends here
4566 ;; Local Variables:
4567 ;; coding: utf-8
4568 ;; End: