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