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