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