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