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