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