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