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