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