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