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