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