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