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