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