]> code.delx.au - gnu-emacs-elpa/blob - yasnippet.el
display-fn isn't actually used for filtering
[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 (or
1546 (let* ((display-fn (or display-fn #'identity))
1547 (menu
1548 (list prompt
1549 (cons "title"
1550 (mapcar (lambda (c)
1551 (let ((d (funcall display-fn c)))
1552 (cond ((stringp d) (cons (concat " " d) c))
1553 ((listp d) (car d)))))
1554 choices)))))
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 (keyboard-quit))))
1563
1564 (defun yas--x-pretty-prompt-templates (prompt templates)
1565 "Display TEMPLATES, grouping neatly by table name."
1566 (let ((organized (make-hash-table :test #'equal))
1567 menu
1568 more-than-one-table
1569 prefix)
1570 (dolist (tl templates)
1571 (puthash (yas--template-table tl)
1572 (cons tl
1573 (gethash (yas--template-table tl) organized))
1574 organized))
1575 (setq more-than-one-table (> (hash-table-count organized) 1))
1576 (setq prefix (if more-than-one-table
1577 " " ""))
1578 (if more-than-one-table
1579 (maphash #'(lambda (table templates)
1580 (push (yas--table-name table) menu)
1581 (dolist (tl templates)
1582 (push (cons (concat prefix (yas--template-name tl)) tl) menu))) organized)
1583 (setq menu (mapcar #'(lambda (tl) (cons (concat prefix (yas--template-name tl)) tl)) templates)))
1584
1585 (setq menu (nreverse menu))
1586 (or (x-popup-menu (if (fboundp 'posn-at-point)
1587 (let ((x-y (posn-x-y (posn-at-point (point)))))
1588 (list (list (+ (car x-y) 10)
1589 (+ (cdr x-y) 20))
1590 (selected-window)))
1591 t)
1592 (list prompt (push "title" menu)))
1593 (keyboard-quit))))
1594
1595 (defun yas-ido-prompt (prompt choices &optional display-fn)
1596 (when (and (fboundp 'ido-completing-read)
1597 (or (>= emacs-major-version 24)
1598 ido-mode))
1599 (yas-completing-prompt prompt choices display-fn #'ido-completing-read)))
1600
1601 (defun yas-dropdown-prompt (_prompt choices &optional display-fn)
1602 (when (fboundp 'dropdown-list)
1603 (let* ((formatted-choices
1604 (if display-fn (mapcar display-fn choices) choices))
1605 (n (dropdown-list formatted-choices)))
1606 (if n (nth n choices)
1607 (keyboard-quit)))))
1608
1609 (defun yas-completing-prompt (prompt choices &optional display-fn completion-fn)
1610 (let* ((formatted-choices
1611 (if display-fn (mapcar display-fn choices) choices))
1612 (chosen (funcall (or completion-fn #'completing-read)
1613 prompt formatted-choices
1614 nil 'require-match nil nil)))
1615 (if (eq choices formatted-choices)
1616 chosen
1617 (nth (or (position chosen formatted-choices :test #'string=) 0)
1618 choices))))
1619
1620 (defun yas-no-prompt (_prompt choices &optional _display-fn)
1621 (first choices))
1622
1623 \f
1624 ;;; Defining snippets
1625 ;; This consists of creating and registering `yas--template' objects in the
1626 ;; correct tables.
1627 ;;
1628
1629 (defvar yas--creating-compiled-snippets nil)
1630
1631 (defun yas--define-snippets-1 (snippet snippet-table)
1632 "Helper for `yas-define-snippets'."
1633 ;; X) Calculate some more defaults on the values returned by
1634 ;; `yas--parse-template'.
1635 ;;
1636 (let* ((file (seventh snippet))
1637 (key (car snippet))
1638 (name (or (third snippet)
1639 (and file
1640 (file-name-directory file))))
1641 (condition (fourth snippet))
1642 (group (fifth snippet))
1643 (keybinding (yas--read-keybinding (eighth snippet)))
1644 (uuid (or (ninth snippet)
1645 name))
1646 (template (or (gethash uuid (yas--table-uuidhash snippet-table))
1647 (yas--make-blank-template))))
1648 ;; X) populate the template object
1649 ;;
1650 (yas--populate-template template
1651 :table snippet-table
1652 :key key
1653 :content (second snippet)
1654 :name (or name key)
1655 :group group
1656 :condition condition
1657 :expand-env (sixth snippet)
1658 :file (seventh snippet)
1659 :keybinding keybinding
1660 :uuid uuid)
1661 ;; X) Update this template in the appropriate table. This step
1662 ;; also will take care of adding the key indicators in the
1663 ;; templates menu entry, if any
1664 ;;
1665 (yas--update-template snippet-table template)
1666 ;; X) Return the template
1667 ;;
1668 ;;
1669 template))
1670
1671 (defun yas-define-snippets (mode snippets)
1672 "Define SNIPPETS for MODE.
1673
1674 SNIPPETS is a list of snippet definitions, each taking the
1675 following form
1676
1677 (KEY TEMPLATE NAME CONDITION GROUP EXPAND-ENV FILE KEYBINDING UUID)
1678
1679 Within these, only KEY and TEMPLATE are actually mandatory.
1680
1681 TEMPLATE might be a Lisp form or a string, depending on whether
1682 this is a snippet or a snippet-command.
1683
1684 CONDITION, EXPAND-ENV and KEYBINDING are Lisp forms, they have
1685 been `yas--read-lisp'-ed and will eventually be
1686 `yas--eval-lisp'-ed.
1687
1688 The remaining elements are strings.
1689
1690 FILE is probably of very little use if you're programatically
1691 defining snippets.
1692
1693 UUID is the snippets \"unique-id\". Loading a second snippet file
1694 with the same uuid replaced the previous snippet.
1695
1696 You can use `yas--parse-template' to return such lists based on
1697 the current buffers contents."
1698 (if yas--creating-compiled-snippets
1699 (progn
1700 (insert ";;; Snippet definitions:\n;;;\n")
1701 (let ((literal-snippets (list))
1702 (print-length nil))
1703 (dolist (snippet snippets)
1704 (let ((key (nth 0 snippet))
1705 (template-content (nth 1 snippet))
1706 (name (nth 2 snippet))
1707 (condition (nth 3 snippet))
1708 (group (nth 4 snippet))
1709 (expand-env (nth 5 snippet))
1710 (file nil) ;; omit on purpose
1711 (binding (nth 7 snippet))
1712 (uuid (nth 8 snippet)))
1713 (push `(,key
1714 ,template-content
1715 ,name
1716 ,condition
1717 ,group
1718 ,expand-env
1719 ,file
1720 ,binding
1721 ,uuid)
1722 literal-snippets)))
1723 (insert (pp-to-string
1724 `(yas-define-snippets ',mode ',literal-snippets)))
1725 (insert "\n\n")))
1726 ;; Normal case.
1727 (let ((snippet-table (yas--table-get-create mode))
1728 (template nil))
1729 (dolist (snippet snippets)
1730 (setq template (yas--define-snippets-1 snippet
1731 snippet-table)))
1732 template)))
1733
1734 \f
1735 ;;; Loading snippets from files
1736
1737 (defun yas--load-yas-setup-file (file)
1738 (if (not yas--creating-compiled-snippets)
1739 ;; Normal case.
1740 (load file 'noerror)
1741 (let ((elfile (concat file ".el")))
1742 (when (file-exists-p elfile)
1743 (insert ";;; .yas-setup.el support file if any:\n;;;\n")
1744 (insert-file-contents elfile)
1745 (goto-char (point-max))))))
1746
1747 (defun yas--define-parents (mode parents)
1748 "Add PARENTS to the list of MODE's parents."
1749 (puthash mode (remove-duplicates
1750 (append parents
1751 (gethash mode yas--parents)))
1752 yas--parents))
1753
1754 (defun yas-load-directory (top-level-dir &optional use-jit interactive)
1755 "Load snippets in directory hierarchy TOP-LEVEL-DIR.
1756
1757 Below TOP-LEVEL-DIR each directory should be a mode name.
1758
1759 Optional USE-JIT use jit-loading of snippets."
1760 (interactive "DSelect the root directory: ni\np")
1761 (unless yas-snippet-dirs
1762 (setq yas-snippet-dirs top-level-dir))
1763 (dolist (dir (yas--subdirs top-level-dir))
1764 (let* ((major-mode-and-parents (yas--compute-major-mode-and-parents
1765 (concat dir "/dummy")))
1766 (mode-sym (car major-mode-and-parents))
1767 (parents (cdr major-mode-and-parents)))
1768 ;; Attention: The parents and the menus are already defined
1769 ;; here, even if the snippets are later jit-loaded.
1770 ;;
1771 ;; * We need to know the parents at this point since entering a
1772 ;; given mode should jit load for its parents
1773 ;; immediately. This could be reviewed, the parents could be
1774 ;; discovered just-in-time-as well
1775 ;;
1776 ;; * We need to create the menus here to support the `full'
1777 ;; option to `yas-use-menu' (all known snippet menus are shown to the user)
1778 ;;
1779 (yas--define-parents mode-sym parents)
1780 (yas--menu-keymap-get-create mode-sym)
1781 (let ((fun `(lambda () ;; FIXME: Simulating lexical-binding.
1782 (yas--load-directory-1 ',dir ',mode-sym))))
1783 (if (and use-jit
1784 (not (some #'(lambda (buffer)
1785 (with-current-buffer buffer
1786 ;; FIXME: Shouldn't this use derived-mode-p?
1787 (when (eq major-mode mode-sym)
1788 (yas--message 3 "Discovered there was already %s in %s" buffer mode-sym)
1789 t)))
1790 (buffer-list))))
1791 (yas--schedule-jit mode-sym fun)
1792 (funcall fun)))))
1793 (when interactive
1794 (yas--message 3 "Loaded snippets from %s." top-level-dir)))
1795
1796 (defun yas--load-directory-1 (directory mode-sym)
1797 "Recursively load snippet templates from DIRECTORY."
1798 (if yas--creating-compiled-snippets
1799 (let ((output-file (expand-file-name ".yas-compiled-snippets.el"
1800 directory)))
1801 (with-temp-file output-file
1802 (insert (format ";;; Compiled snippets and support files for `%s'\n"
1803 mode-sym))
1804 (yas--load-directory-2 directory mode-sym)
1805 (insert (format ";;; Do not edit! File generated at %s\n"
1806 (current-time-string)))))
1807 ;; Normal case.
1808 (unless (file-exists-p (concat directory "/" ".yas-skip"))
1809 (if (and (progn (yas--message 2 "Loading compiled snippets from %s" directory) t)
1810 (load (expand-file-name ".yas-compiled-snippets" directory) 'noerror (<= yas-verbosity 3)))
1811 (yas--message 2 "Loading snippet files from %s" directory)
1812 (yas--load-directory-2 directory mode-sym)))))
1813
1814 (defun yas--load-directory-2 (directory mode-sym)
1815 ;; Load .yas-setup.el files wherever we find them
1816 ;;
1817 (yas--load-yas-setup-file (expand-file-name ".yas-setup" directory))
1818 (let* ((default-directory directory)
1819 (snippet-defs nil))
1820 ;; load the snippet files
1821 ;;
1822 (with-temp-buffer
1823 (dolist (file (yas--subdirs directory 'no-subdirs-just-files))
1824 (when (file-readable-p file)
1825 (insert-file-contents file nil nil nil t)
1826 (push (yas--parse-template file)
1827 snippet-defs))))
1828 (when snippet-defs
1829 (yas-define-snippets mode-sym
1830 snippet-defs))
1831 ;; now recurse to a lower level
1832 ;;
1833 (dolist (subdir (yas--subdirs directory))
1834 (yas--load-directory-2 subdir
1835 mode-sym))))
1836
1837 (defun yas--load-snippet-dirs (&optional nojit)
1838 "Reload the directories listed in `yas-snippet-dirs' or
1839 prompt the user to select one."
1840 (let (errors)
1841 (if yas-snippet-dirs
1842 (dolist (directory (reverse (yas-snippet-dirs)))
1843 (cond ((file-directory-p directory)
1844 (yas-load-directory directory (not nojit))
1845 (if nojit
1846 (yas--message 3 "Loaded %s" directory)
1847 (yas--message 3 "Prepared just-in-time loading for %s" directory)))
1848 (t
1849 (push (yas--message 0 "Check your `yas-snippet-dirs': %s is not a directory" directory) errors))))
1850 (call-interactively 'yas-load-directory))
1851 errors))
1852
1853 (defun yas-reload-all (&optional interactive)
1854 "Reload all snippets and rebuild the YASnippet menu.
1855
1856 When called interactively force immediate reload of all known
1857 snippets under `yas-snippet-dirs', otherwise use just-in-time
1858 loading."
1859 (interactive "p")
1860 (catch 'abort
1861 (let ((errors)
1862 (snippet-editing-buffers
1863 (remove-if-not #'(lambda (buffer)
1864 (with-current-buffer buffer yas--editing-template))
1865 (buffer-list))))
1866 ;; Warn if there are buffers visiting snippets, since reloading will break
1867 ;; any on-line editing of those buffers.
1868 ;;
1869 (when snippet-editing-buffers
1870 (if interactive
1871 (if (y-or-n-p "Some buffers editing live snippets, close them and proceed with reload? ")
1872 (mapc #'kill-buffer snippet-editing-buffers)
1873 (yas--message 1 "Aborted reload...")
1874 (throw 'abort nil))
1875 ;; in a non-interactive use, at least set
1876 ;; `yas--editing-template' to nil, make it guess it next time around
1877 (mapc #'(lambda (buffer)
1878 (with-current-buffer buffer
1879 (kill-local-variable 'yas--editing-template)))
1880 (buffer-list))))
1881
1882 ;; Empty all snippet tables and parenting info
1883 ;;
1884 (setq yas--tables (make-hash-table))
1885 (setq yas--parents (make-hash-table))
1886
1887 ;; Before killing `yas--menu-table' use its keys to cleanup the
1888 ;; mode menu parts of `yas--minor-mode-menu' (thus also cleaning
1889 ;; up `yas-minor-mode-map', which points to it)
1890 ;;
1891 (maphash #'(lambda (menu-symbol _keymap)
1892 (define-key yas--minor-mode-menu (vector menu-symbol) nil))
1893 yas--menu-table)
1894 ;; Now empty `yas--menu-table' as well
1895 (setq yas--menu-table (make-hash-table))
1896
1897 ;; Cancel all pending 'yas--scheduled-jit-loads'
1898 ;;
1899 (setq yas--scheduled-jit-loads (make-hash-table))
1900
1901 ;; Reload the directories listed in `yas-snippet-dirs' or prompt
1902 ;; the user to select one.
1903 ;;
1904 (setq errors (yas--load-snippet-dirs interactive))
1905 ;; Reload the direct keybindings
1906 ;;
1907 (yas-direct-keymaps-reload)
1908
1909 (run-hooks 'yas-after-reload-hook)
1910 (yas--message 3 "Reloaded everything%s...%s."
1911 (if interactive "" " (snippets will load just-in-time)")
1912 (if errors " (some errors, check *Messages*)" "")))))
1913
1914 (defvar yas-after-reload-hook nil
1915 "Hooks run after `yas-reload-all'.")
1916
1917 (defun yas--load-pending-jits ()
1918 (dolist (mode (yas--modes-to-activate))
1919 (let ((funs (reverse (gethash mode yas--scheduled-jit-loads))))
1920 ;; must reverse to maintain coherence with `yas-snippet-dirs'
1921 (dolist (fun funs)
1922 (yas--message 3 "Loading for `%s', just-in-time: %s!" mode fun)
1923 (funcall fun))
1924 (remhash mode yas--scheduled-jit-loads))))
1925
1926 ;; (when (<= emacs-major-version 22)
1927 ;; (add-hook 'after-change-major-mode-hook 'yas--load-pending-jits))
1928
1929 (defun yas--quote-string (string)
1930 "Escape and quote STRING.
1931 foo\"bar\\! -> \"foo\\\"bar\\\\!\""
1932 (concat "\""
1933 (replace-regexp-in-string "[\\\"]"
1934 "\\\\\\&"
1935 string
1936 t)
1937 "\""))
1938 \f
1939 ;;; Snippet compilation function
1940
1941 (defun yas--initialize ()
1942 "For backward compatibility, enable `yas-minor-mode' globally."
1943 (yas-global-mode 1))
1944
1945 (defun yas-compile-directory (top-level-dir)
1946 "Create .yas-compiled-snippets.el files under subdirs of TOP-LEVEL-DIR.
1947
1948 This works by stubbing a few functions, then calling
1949 `yas-load-directory'."
1950 (interactive "DTop level snippet directory?")
1951 (let ((yas--creating-compiled-snippets t))
1952 (yas-load-directory top-level-dir nil)))
1953
1954 (defun yas-recompile-all ()
1955 "Compile every dir in `yas-snippet-dirs'."
1956 (interactive)
1957 (mapc #'yas-compile-directory (yas-snippet-dirs)))
1958
1959
1960 ;;; JIT loading
1961 ;;;
1962
1963 (defvar yas--scheduled-jit-loads (make-hash-table)
1964 "Alist of mode-symbols to forms to be evaled when `yas-minor-mode' kicks in.")
1965
1966 (defun yas--schedule-jit (mode fun)
1967 (push fun (gethash mode yas--scheduled-jit-loads)))
1968
1969
1970 \f
1971 ;;; Some user level functions
1972
1973 (defun yas-about ()
1974 (interactive)
1975 (message (concat "yasnippet (version "
1976 yas--version
1977 ") -- pluskid <pluskid@gmail.com>/joaotavora <joaotavora@gmail.com>")))
1978
1979 \f
1980 ;;; Apropos snippet menu:
1981 ;;
1982 ;; The snippet menu keymaps are store by mode in hash table called
1983 ;; `yas--menu-table'. They are linked to the main menu in
1984 ;; `yas--menu-keymap-get-create' and are initially created empty,
1985 ;; reflecting the table hierarchy.
1986 ;;
1987 ;; They can be populated in two mutually exclusive ways: (1) by
1988 ;; reading `yas--template-group', which in turn is populated by the "#
1989 ;; group:" directives of the snippets or the ".yas-make-groups" file
1990 ;; or (2) by using a separate `yas-define-menu' call, which declares a
1991 ;; menu structure based on snippets uuids.
1992 ;;
1993 ;; Both situations are handled in `yas--update-template-menu', which
1994 ;; uses the predicate `yas--template-menu-managed-by-yas-define-menu'
1995 ;; that can tell between the two situations.
1996 ;;
1997 ;; Note:
1998 ;;
1999 ;; * if `yas-define-menu' is used it must run before
2000 ;; `yas-define-snippets' and the UUIDS must match, otherwise we get
2001 ;; duplicate entries. The `yas--template' objects are created in
2002 ;; `yas-define-menu', holding nothing but the menu entry,
2003 ;; represented by a pair of ((menu-item NAME :keys KEYS) TYPE) and
2004 ;; stored in `yas--template-menu-binding-pair'. The (menu-item ...)
2005 ;; part is then stored in the menu keymap itself which make the item
2006 ;; appear to the user. These limitations could probably be revised.
2007 ;;
2008 ;; * The `yas--template-perm-group' slot is only used in
2009 ;; `yas-describe-tables'.
2010 ;;
2011 (defun yas--template-menu-binding-pair-get-create (template &optional type)
2012 "Get TEMPLATE's menu binding or assign it a new one.
2013
2014 TYPE may be `:stay', signaling this menu binding should be
2015 static in the menu."
2016 (or (yas--template-menu-binding-pair template)
2017 (let (;; (key (yas--template-key template))
2018 ;; (keybinding (yas--template-keybinding template))
2019 )
2020 (setf (yas--template-menu-binding-pair template)
2021 (cons `(menu-item ,(or (yas--template-name template)
2022 (yas--template-uuid template))
2023 ,(yas--make-menu-binding template)
2024 :keys ,nil)
2025 type)))))
2026 (defun yas--template-menu-managed-by-yas-define-menu (template)
2027 "Non-nil if TEMPLATE's menu entry was included in a `yas-define-menu' call."
2028 (cdr (yas--template-menu-binding-pair template)))
2029
2030
2031 (defun yas--show-menu-p (mode)
2032 (cond ((eq yas-use-menu 'abbreviate)
2033 (find mode
2034 (mapcar #'(lambda (table)
2035 (yas--table-mode table))
2036 (yas--get-snippet-tables))))
2037 ((eq yas-use-menu 'full)
2038 t)
2039 ((eq yas-use-menu t)
2040 t)))
2041
2042 (defun yas--delete-from-keymap (keymap uuid)
2043 "Recursively delete items with UUID from KEYMAP and its submenus."
2044
2045 ;; XXX: This used to skip any submenus named \"parent mode\"
2046 ;;
2047 ;; First of all, recursively enter submenus, i.e. the tree is
2048 ;; searched depth first so that stale submenus can be found in the
2049 ;; higher passes.
2050 ;;
2051 (mapc #'(lambda (item)
2052 (when (and (listp (cdr item))
2053 (keymapp (third (cdr item))))
2054 (yas--delete-from-keymap (third (cdr item)) uuid)))
2055 (rest keymap))
2056 ;; Set the uuid entry to nil
2057 ;;
2058 (define-key keymap (vector (make-symbol uuid)) nil)
2059 ;; Destructively modify keymap
2060 ;;
2061 (setcdr keymap (delete-if #'(lambda (item)
2062 (or (null (cdr item))
2063 (and (keymapp (third (cdr item)))
2064 (null (cdr (third (cdr item)))))))
2065 (rest keymap))))
2066
2067 (defun yas-define-menu (mode menu &optional omit-items)
2068 "Define a snippet menu for MODE according to MENU, omitting OMIT-ITEMS.
2069
2070 MENU is a list, its elements can be:
2071
2072 - (yas-item UUID) : Creates an entry the snippet identified with
2073 UUID. The menu entry for a snippet thus identified is
2074 permanent, i.e. it will never move (be reordered) in the menu.
2075
2076 - (yas-separator) : Creates a separator
2077
2078 - (yas-submenu NAME SUBMENU) : Creates a submenu with NAME,
2079 SUBMENU has the same form as MENU. NAME is also added to the
2080 list of groups of the snippets defined thereafter.
2081
2082 OMIT-ITEMS is a list of snippet uuid's that will always be
2083 omitted from MODE's menu, even if they're manually loaded.
2084
2085 This function does nothing if `yas-use-menu' is nil."
2086 (when yas-use-menu
2087 (let* ((table (yas--table-get-create mode))
2088 (hash (yas--table-uuidhash table)))
2089 (yas--define-menu-1 table
2090 (yas--menu-keymap-get-create mode)
2091 menu
2092 hash)
2093 (dolist (uuid omit-items)
2094 (let ((template (or (gethash uuid hash)
2095 (yas--populate-template (puthash uuid
2096 (yas--make-blank-template)
2097 hash)
2098 :table table
2099 :uuid uuid))))
2100 (setf (yas--template-menu-binding-pair template) (cons nil :none)))))))
2101
2102 (defun yas--define-menu-1 (table menu-keymap menu uuidhash &optional group-list)
2103 "Helper for `yas-define-menu'."
2104 (dolist (e (reverse menu))
2105 (cond ((eq (first e) 'yas-item)
2106 (let ((template (or (gethash (second e) uuidhash)
2107 (yas--populate-template (puthash (second e)
2108 (yas--make-blank-template)
2109 uuidhash)
2110 :table table
2111 :perm-group group-list
2112 :uuid (second e)))))
2113 (define-key menu-keymap (vector (gensym))
2114 (car (yas--template-menu-binding-pair-get-create template :stay)))))
2115 ((eq (first e) 'yas-submenu)
2116 (let ((subkeymap (make-sparse-keymap)))
2117 (define-key menu-keymap (vector (gensym))
2118 `(menu-item ,(second e) ,subkeymap))
2119 (yas--define-menu-1 table
2120 subkeymap
2121 (third e)
2122 uuidhash
2123 (append group-list (list (second e))))))
2124 ((eq (first e) 'yas-separator)
2125 (define-key menu-keymap (vector (gensym))
2126 '(menu-item "----")))
2127 (t
2128 (yas--message 3 "Don't know anything about menu entry %s" (first e))))))
2129 \f
2130 (defun yas--define (mode key template &optional name condition group)
2131 "Define a snippet. Expanding KEY into TEMPLATE.
2132
2133 NAME is a description to this template. Also update the menu if
2134 `yas-use-menu' is t. CONDITION is the condition attached to
2135 this snippet. If you attach a condition to a snippet, then it
2136 will only be expanded when the condition evaluated to non-nil."
2137 (yas-define-snippets mode
2138 (list (list key template name condition group))))
2139
2140 (defun yas-hippie-try-expand (first-time?)
2141 "Integrate with hippie expand.
2142
2143 Just put this function in `hippie-expand-try-functions-list'."
2144 (when yas-minor-mode
2145 (if (not first-time?)
2146 (let ((yas-fallback-behavior 'return-nil))
2147 (yas-expand))
2148 (undo 1)
2149 nil)))
2150
2151
2152 ;;; Apropos condition-cache:
2153 ;;;
2154 ;;;
2155 ;;;
2156 ;;;
2157 (defvar yas--condition-cache-timestamp nil)
2158 (defmacro yas-define-condition-cache (func doc &rest body)
2159 "Define a function FUNC with doc DOC and body BODY.
2160 BODY is executed at most once every snippet expansion attempt, to check
2161 expansion conditions.
2162
2163 It doesn't make any sense to call FUNC programatically."
2164 `(defun ,func () ,(if (and doc
2165 (stringp doc))
2166 (concat doc
2167 "\n\nFor use in snippets' conditions. Within each
2168 snippet-expansion routine like `yas-expand', computes actual
2169 value for the first time then always returns a cached value.")
2170 (setq body (cons doc body))
2171 nil)
2172 (let ((timestamp-and-value (get ',func 'yas--condition-cache)))
2173 (if (equal (car timestamp-and-value) yas--condition-cache-timestamp)
2174 (cdr timestamp-and-value)
2175 (let ((new-value (progn
2176 ,@body
2177 )))
2178 (put ',func 'yas--condition-cache (cons yas--condition-cache-timestamp new-value))
2179 new-value)))))
2180
2181 (defalias 'yas-expand 'yas-expand-from-trigger-key)
2182 (defun yas-expand-from-trigger-key (&optional field)
2183 "Expand a snippet before point.
2184
2185 If no snippet expansion is possible, fall back to the behaviour
2186 defined in `yas-fallback-behavior'.
2187
2188 Optional argument FIELD is for non-interactive use and is an
2189 object satisfying `yas--field-p' to restrict the expansion to."
2190 (interactive)
2191 (setq yas--condition-cache-timestamp (current-time))
2192 (let (templates-and-pos)
2193 (unless (and yas-expand-only-for-last-commands
2194 (not (member last-command yas-expand-only-for-last-commands)))
2195 (setq templates-and-pos (if field
2196 (save-restriction
2197 (narrow-to-region (yas--field-start field)
2198 (yas--field-end field))
2199 (yas--current-key))
2200 (yas--current-key))))
2201 (if (and templates-and-pos
2202 (first templates-and-pos))
2203 (yas--expand-or-prompt-for-template (first templates-and-pos)
2204 (second templates-and-pos)
2205 (third templates-and-pos))
2206 (yas--fallback))))
2207
2208 (defun yas-expand-from-keymap ()
2209 "Directly expand some snippets, searching `yas--direct-keymaps'.
2210
2211 If expansion fails, execute the previous binding for this key"
2212 (interactive)
2213 (setq yas--condition-cache-timestamp (current-time))
2214 (let* ((vec (subseq (this-command-keys-vector) (if current-prefix-arg
2215 (length (this-command-keys))
2216 0)))
2217 (templates (mapcan #'(lambda (table)
2218 (yas--fetch table vec))
2219 (yas--get-snippet-tables))))
2220 (if templates
2221 (yas--expand-or-prompt-for-template templates)
2222 (let ((yas-fallback-behavior 'call-other-command))
2223 (yas--fallback)))))
2224
2225 (defun yas--expand-or-prompt-for-template (templates &optional start end)
2226 "Expand one of TEMPLATES from START to END.
2227
2228 Prompt the user if TEMPLATES has more than one element, else
2229 expand immediately. Common gateway for
2230 `yas-expand-from-trigger-key' and `yas-expand-from-keymap'."
2231 (let ((yas--current-template (or (and (rest templates) ;; more than one
2232 (yas--prompt-for-template (mapcar #'cdr templates)))
2233 (cdar templates))))
2234 (when yas--current-template
2235 (yas-expand-snippet (yas--template-content yas--current-template)
2236 start
2237 end
2238 (yas--template-expand-env yas--current-template)))))
2239
2240 ;; Apropos the trigger key and the fallback binding:
2241 ;;
2242 ;; When `yas-minor-mode-map' binds <tab>, that correctly overrides
2243 ;; org-mode's <tab>, for example and searching for fallbacks correctly
2244 ;; returns `org-cycle'. However, most other modes bind "TAB". TODO,
2245 ;; improve this explanation.
2246 ;;
2247 (defun yas--fallback ()
2248 "Fallback after expansion has failed.
2249
2250 Common gateway for `yas-expand-from-trigger-key' and
2251 `yas-expand-from-keymap'."
2252 (cond ((eq yas-fallback-behavior 'return-nil)
2253 ;; return nil
2254 nil)
2255 ((eq yas-fallback-behavior 'call-other-command)
2256 (let* ((beyond-yasnippet (yas--keybinding-beyond-yasnippet)))
2257 (yas--message 4 "Falling back to %s" beyond-yasnippet)
2258 (assert (or (null beyond-yasnippet) (commandp beyond-yasnippet)))
2259 (setq this-original-command beyond-yasnippet)
2260 (when beyond-yasnippet
2261 (call-interactively beyond-yasnippet))))
2262 ((and (listp yas-fallback-behavior)
2263 (cdr yas-fallback-behavior)
2264 (eq 'apply (car yas-fallback-behavior)))
2265 (if (cddr yas-fallback-behavior)
2266 (apply (cadr yas-fallback-behavior)
2267 (cddr yas-fallback-behavior))
2268 (when (commandp (cadr yas-fallback-behavior))
2269 (setq this-command (cadr yas-fallback-behavior))
2270 (call-interactively (cadr yas-fallback-behavior)))))
2271 (t
2272 ;; also return nil if all the other fallbacks have failed
2273 nil)))
2274
2275 (defun yas--keybinding-beyond-yasnippet ()
2276 "Return the ??"
2277 (let* ((yas-minor-mode nil)
2278 (yas--direct-keymaps nil)
2279 (keys (this-single-command-keys)))
2280 (or (key-binding keys t)
2281 (key-binding (yas--fallback-translate-input keys) t))))
2282
2283 (defun yas--fallback-translate-input (keys)
2284 "Emulate `read-key-sequence', at least what I think it does.
2285
2286 Keys should be an untranslated key vector. Returns a translated
2287 vector of keys. FIXME not thoroughly tested."
2288 (let ((retval [])
2289 (i 0))
2290 (while (< i (length keys))
2291 (let ((j i)
2292 (translated local-function-key-map))
2293 (while (and (< j (length keys))
2294 translated
2295 (keymapp translated))
2296 (setq translated (cdr (assoc (aref keys j) (remove 'keymap translated)))
2297 j (1+ j)))
2298 (setq retval (vconcat retval (cond ((symbolp translated)
2299 `[,translated])
2300 ((vectorp translated)
2301 translated)
2302 (t
2303 (substring keys i j)))))
2304 (setq i j)))
2305 retval))
2306
2307 \f
2308 ;;; Utils for snippet development:
2309
2310 (defun yas--all-templates (tables)
2311 "Get `yas--template' objects in TABLES, applicable for buffer and point.
2312
2313 Honours `yas-choose-tables-first', `yas-choose-keys-first' and
2314 `yas-buffer-local-condition'"
2315 (when yas-choose-tables-first
2316 (setq tables (list (yas--prompt-for-table tables))))
2317 (mapcar #'cdr
2318 (if yas-choose-keys-first
2319 (let ((key (yas--prompt-for-keys
2320 (mapcan #'yas--table-all-keys tables))))
2321 (when key
2322 (mapcan #'(lambda (table)
2323 (yas--fetch table key))
2324 tables)))
2325 (remove-duplicates (mapcan #'yas--table-templates tables)
2326 :test #'equal))))
2327
2328 (defun yas-insert-snippet (&optional no-condition)
2329 "Choose a snippet to expand, pop-up a list of choices according
2330 to `yas-prompt-functions'.
2331
2332 With prefix argument NO-CONDITION, bypass filtering of snippets
2333 by condition."
2334 (interactive "P")
2335 (setq yas--condition-cache-timestamp (current-time))
2336 (let* ((yas-buffer-local-condition (or (and no-condition
2337 'always)
2338 yas-buffer-local-condition))
2339 (templates (yas--all-templates (yas--get-snippet-tables)))
2340 (yas--current-template (and templates
2341 (or (and (rest templates) ;; more than one template for same key
2342 (yas--prompt-for-template templates))
2343 (car templates))))
2344 (where (if (region-active-p)
2345 (cons (region-beginning) (region-end))
2346 (cons (point) (point)))))
2347 (if yas--current-template
2348 (yas-expand-snippet (yas--template-content yas--current-template)
2349 (car where)
2350 (cdr where)
2351 (yas--template-expand-env yas--current-template))
2352 (yas--message 3 "No snippets can be inserted here!"))))
2353
2354 (defun yas-visit-snippet-file ()
2355 "Choose a snippet to edit, selection like `yas-insert-snippet'.
2356
2357 Only success if selected snippet was loaded from a file. Put the
2358 visited file in `snippet-mode'."
2359 (interactive)
2360 (let* ((yas-buffer-local-condition 'always)
2361 (templates (yas--all-templates (yas--get-snippet-tables)))
2362 (yas-prompt-functions '(yas-ido-prompt yas-completing-prompt))
2363 (template (and templates
2364 (or (yas--prompt-for-template templates
2365 "Choose a snippet template to edit: ")
2366 (car templates)))))
2367
2368 (if template
2369 (yas--visit-snippet-file-1 template)
2370 (message "No snippets tables active!"))))
2371
2372 (defun yas--visit-snippet-file-1 (template)
2373 "Helper for `yas-visit-snippet-file'."
2374 (let ((file (yas--template-file template)))
2375 (cond ((and file (file-readable-p file))
2376 (find-file-other-window file)
2377 (snippet-mode)
2378 (set (make-local-variable 'yas--editing-template) template))
2379 (file
2380 (message "Original file %s no longer exists!" file))
2381 (t
2382 (switch-to-buffer (format "*%s*"(yas--template-name template)))
2383 (let ((type 'snippet))
2384 (when (listp (yas--template-content template))
2385 (insert (format "# type: command\n"))
2386 (setq type 'command))
2387 (insert (format "# key: %s\n" (yas--template-key template)))
2388 (insert (format "# name: %s\n" (yas--template-name template)))
2389 (when (yas--template-keybinding template)
2390 (insert (format "# binding: %s\n" (yas--template-keybinding template))))
2391 (when (yas--template-expand-env template)
2392 (insert (format "# expand-env: %s\n" (yas--template-expand-env template))))
2393 (when (yas--template-condition template)
2394 (insert (format "# condition: %s\n" (yas--template-condition template))))
2395 (insert "# --\n")
2396 (insert (if (eq type 'command)
2397 (pp-to-string (yas--template-content template))
2398 (yas--template-content template))))
2399 (snippet-mode)
2400 (set (make-local-variable 'yas--editing-template) template)))))
2401
2402 (defun yas--guess-snippet-directories-1 (table)
2403 "Guess possible snippet subdirectories for TABLE."
2404 (cons (yas--table-name table)
2405 (mapcan #'(lambda (parent)
2406 (yas--guess-snippet-directories-1
2407 parent))
2408 (yas--table-parents table))))
2409
2410 (defun yas--guess-snippet-directories (&optional table)
2411 "Try to guess suitable directories based on the current active
2412 tables (or optional TABLE).
2413
2414 Returns a list of elements (TABLE . DIRS) where TABLE is a
2415 `yas--table' object and DIRS is a list of all possible directories
2416 where snippets of table might exist."
2417 (let ((main-dir (replace-regexp-in-string
2418 "/+$" ""
2419 (or (first (or (yas-snippet-dirs)
2420 (setq yas-snippet-dirs '("~/.emacs.d/snippets")))))))
2421 (tables (or (and table
2422 (list table))
2423 (yas--get-snippet-tables))))
2424 ;; HACK! the snippet table created here is actually registered!
2425 ;;
2426 (unless (or table (gethash major-mode yas--tables))
2427 (push (yas--table-get-create major-mode)
2428 tables))
2429
2430 (mapcar #'(lambda (table)
2431 (cons table
2432 (mapcar #'(lambda (subdir)
2433 (concat main-dir "/" subdir))
2434 (yas--guess-snippet-directories-1 table))))
2435 tables)))
2436
2437 (defun yas--make-directory-maybe (table-and-dirs &optional main-table-string)
2438 "Return a dir inside TABLE-AND-DIRS, prompts for creation if none exists."
2439 (or (some #'(lambda (dir) (when (file-directory-p dir) dir)) (cdr table-and-dirs))
2440 (let ((candidate (first (cdr table-and-dirs))))
2441 (unless (file-writable-p (file-name-directory candidate))
2442 (error (yas--format "%s is not writable." candidate)))
2443 (if (y-or-n-p (format "Guessed directory (%s) for%s%s table \"%s\" does not exist! Create? "
2444 candidate
2445 (if (gethash (yas--table-mode (car table-and-dirs))
2446 yas--tables)
2447 ""
2448 " brand new")
2449 (or main-table-string
2450 "")
2451 (yas--table-name (car table-and-dirs))))
2452 (progn
2453 (make-directory candidate 'also-make-parents)
2454 ;; create the .yas-parents file here...
2455 candidate)))))
2456
2457 (defun yas-new-snippet (&optional no-template)
2458 "Pops a new buffer for writing a snippet.
2459
2460 Expands a snippet-writing snippet, unless the optional prefix arg
2461 NO-TEMPLATE is non-nil."
2462 (interactive "P")
2463 (let ((guessed-directories (yas--guess-snippet-directories)))
2464
2465 (switch-to-buffer "*new snippet*")
2466 (erase-buffer)
2467 (kill-all-local-variables)
2468 (snippet-mode)
2469 (yas-minor-mode 1)
2470 (set (make-local-variable 'yas--guessed-modes) (mapcar #'(lambda (d)
2471 (yas--table-mode (car d)))
2472 guessed-directories))
2473 (if (and (not no-template) yas-new-snippet-default)
2474 (yas-expand-snippet yas-new-snippet-default))))
2475
2476 (defun yas--compute-major-mode-and-parents (file)
2477 "Given FILE, find the nearest snippet directory for a given mode.
2478
2479 Returns a list (MODE-SYM PARENTS), the mode's symbol and a list
2480 representing one or more of the mode's parents.
2481
2482 Note that MODE-SYM need not be the symbol of a real major mode,
2483 neither do the elements of PARENTS."
2484 (let* ((file-dir (and file
2485 (directory-file-name (or (some #'(lambda (special)
2486 (locate-dominating-file file special))
2487 '(".yas-setup.el"
2488 ".yas-make-groups"
2489 ".yas-parents"))
2490 (directory-file-name (file-name-directory file))))))
2491 (parents-file-name (concat file-dir "/.yas-parents"))
2492 (major-mode-name (and file-dir
2493 (file-name-nondirectory file-dir)))
2494 (major-mode-sym (or (and major-mode-name
2495 (intern major-mode-name))))
2496 (parents (when (file-readable-p parents-file-name)
2497 (mapcar #'intern
2498 (split-string
2499 (with-temp-buffer
2500 (insert-file-contents parents-file-name)
2501 (buffer-substring-no-properties (point-min)
2502 (point-max))))))))
2503 (when major-mode-sym
2504 (cons major-mode-sym (remove major-mode-sym parents)))))
2505
2506 (defvar yas--editing-template nil
2507 "Supporting variable for `yas-load-snippet-buffer' and `yas--visit-snippet'.")
2508
2509 (defvar yas--current-template nil
2510 "Holds the current template being expanded into a snippet.")
2511
2512 (defvar yas--guessed-modes nil
2513 "List of guessed modes supporting `yas-load-snippet-buffer'.")
2514
2515 (defun yas--read-table ()
2516 "Ask user for a snippet table, help with some guessing."
2517 (let ((prompt (if (and (featurep 'ido)
2518 ido-mode)
2519 'ido-completing-read 'completing-read)))
2520 (unless yas--guessed-modes
2521 (set (make-local-variable 'yas--guessed-modes)
2522 (or (yas--compute-major-mode-and-parents buffer-file-name))))
2523 (intern
2524 (funcall prompt (format "Choose or enter a table (yas guesses %s): "
2525 (if yas--guessed-modes
2526 (first yas--guessed-modes)
2527 "nothing"))
2528 (mapcar #'symbol-name yas--guessed-modes)
2529 nil
2530 nil
2531 nil
2532 nil
2533 (if (first yas--guessed-modes)
2534 (symbol-name (first yas--guessed-modes)))))))
2535
2536 (defun yas-load-snippet-buffer (table &optional interactive)
2537 "Parse and load current buffer's snippet definition into TABLE.
2538
2539 TABLE is a symbol naming a passed to `yas--table-get-create'.
2540
2541 When called interactively, prompt for the table name."
2542 (interactive (list (yas--read-table) t))
2543 (cond
2544 ;; We have `yas--editing-template', this buffer's content comes from a
2545 ;; template which is already loaded and neatly positioned,...
2546 ;;
2547 (yas--editing-template
2548 (yas--define-snippets-1 (yas--parse-template (yas--template-file yas--editing-template))
2549 (yas--template-table yas--editing-template)))
2550 ;; Try to use `yas--guessed-modes'. If we don't have that use the
2551 ;; value from `yas--compute-major-mode-and-parents'
2552 ;;
2553 (t
2554 (unless yas--guessed-modes
2555 (set (make-local-variable 'yas--guessed-modes) (or (yas--compute-major-mode-and-parents buffer-file-name))))
2556 (let* ((table (yas--table-get-create table)))
2557 (set (make-local-variable 'yas--editing-template)
2558 (yas--define-snippets-1 (yas--parse-template buffer-file-name)
2559 table)))))
2560 (when interactive
2561 (yas--message 3 "Snippet \"%s\" loaded for %s."
2562 (yas--template-name yas--editing-template)
2563 (yas--table-name (yas--template-table yas--editing-template)))))
2564
2565 (defun yas-load-snippet-buffer-and-close (table &optional kill)
2566 "Load the snippet with `yas-load-snippet-buffer', possibly
2567 save, then `quit-window' if saved.
2568
2569 If the snippet is new, ask the user whether (and where) to save
2570 it. If the snippet already has a file, just save it.
2571
2572 The prefix argument KILL is passed to `quit-window'.
2573
2574 Don't use this from a Lisp program, call `yas-load-snippet-buffer'
2575 and `kill-buffer' instead."
2576 (interactive (list (yas--read-table) current-prefix-arg))
2577 (yas-load-snippet-buffer table t)
2578 (when (and (or
2579 ;; Only offer to save this if it looks like a library or new
2580 ;; snippet (loaded from elisp, from a dir in `yas-snippet-dirs'
2581 ;; which is not the first, or from an unwritable file)
2582 ;;
2583 (not (yas--template-file yas--editing-template))
2584 (not (file-writable-p (yas--template-file yas--editing-template)))
2585 (and (listp yas-snippet-dirs)
2586 (second yas-snippet-dirs)
2587 (not (string-match (expand-file-name (first yas-snippet-dirs))
2588 (yas--template-file yas--editing-template)))))
2589 (y-or-n-p (yas--format "Looks like a library or new snippet. Save to new file? ")))
2590 (let* ((option (first (yas--guess-snippet-directories (yas--template-table yas--editing-template))))
2591 (chosen (and option
2592 (yas--make-directory-maybe option))))
2593 (when chosen
2594 (let ((default-file-name (or (and (yas--template-file yas--editing-template)
2595 (file-name-nondirectory (yas--template-file yas--editing-template)))
2596 (yas--template-name yas--editing-template))))
2597 (write-file (concat chosen "/"
2598 (read-from-minibuffer (format "File name to create in %s? " chosen)
2599 default-file-name)))
2600 (setf (yas--template-file yas--editing-template) buffer-file-name)))))
2601 (when buffer-file-name
2602 (save-buffer)
2603 (quit-window kill)))
2604
2605 (defun yas-tryout-snippet (&optional debug)
2606 "Test current buffer's snippet template in other buffer."
2607 (interactive "P")
2608 (let* ((major-mode-and-parent (yas--compute-major-mode-and-parents buffer-file-name))
2609 (parsed (yas--parse-template))
2610 (test-mode (or (and (car major-mode-and-parent)
2611 (fboundp (car major-mode-and-parent))
2612 (car major-mode-and-parent))
2613 (first yas--guessed-modes)
2614 (intern (read-from-minibuffer (yas--format "Please input a mode: ")))))
2615 (yas--current-template
2616 (and parsed
2617 (fboundp test-mode)
2618 (yas--populate-template (yas--make-blank-template)
2619 :table nil ;; no tables for ephemeral snippets
2620 :key (first parsed)
2621 :content (second parsed)
2622 :name (third parsed)
2623 :expand-env (sixth parsed)))))
2624 (cond (yas--current-template
2625 (let ((buffer-name (format "*testing snippet: %s*" (yas--template-name yas--current-template))))
2626 (kill-buffer (get-buffer-create buffer-name))
2627 (switch-to-buffer (get-buffer-create buffer-name))
2628 (setq buffer-undo-list nil)
2629 (condition-case nil (funcall test-mode) (error nil))
2630 (yas-minor-mode 1)
2631 (setq buffer-read-only nil)
2632 (yas-expand-snippet (yas--template-content yas--current-template)
2633 (point-min)
2634 (point-max)
2635 (yas--template-expand-env yas--current-template))
2636 (when (and debug
2637 (require 'yasnippet-debug nil t))
2638 (add-hook 'post-command-hook 'yas-debug-snippet-vars nil t))))
2639 (t
2640 (yas--message 3 "Cannot test snippet for unknown major mode")))))
2641
2642 (defun yas-active-keys ()
2643 "Return all active trigger keys for current buffer and point."
2644 (remove-duplicates
2645 (remove-if-not #'stringp (mapcan #'yas--table-all-keys (yas--get-snippet-tables)))
2646 :test #'string=))
2647
2648 (defun yas--template-fine-group (template)
2649 (car (last (or (yas--template-group template)
2650 (yas--template-perm-group template)))))
2651
2652 (defun yas-describe-tables (&optional choose)
2653 "Display snippets for each table."
2654 (interactive "P")
2655 (let* ((by-name-hash (and choose
2656 (y-or-n-p "Show by namehash? ")))
2657 (buffer (get-buffer-create "*YASnippet tables*"))
2658 (active-tables (yas--get-snippet-tables))
2659 (remain-tables (let ((all))
2660 (maphash #'(lambda (_k v)
2661 (unless (find v active-tables)
2662 (push v all)))
2663 yas--tables)
2664 all))
2665 (table-lists (list active-tables remain-tables))
2666 (original-buffer (current-buffer))
2667 (continue t)
2668 (yas--condition-cache-timestamp (current-time)))
2669 (with-current-buffer buffer
2670 (setq buffer-read-only nil)
2671 (erase-buffer)
2672 (cond ((not by-name-hash)
2673 (insert "YASnippet tables: \n")
2674 (while (and table-lists
2675 continue)
2676 (dolist (table (car table-lists))
2677 (yas--describe-pretty-table table original-buffer))
2678 (setq table-lists (cdr table-lists))
2679 (when table-lists
2680 (yas--create-snippet-xrefs)
2681 (display-buffer buffer)
2682 (setq continue (and choose (y-or-n-p "Show also non-active tables? ")))))
2683 (yas--create-snippet-xrefs)
2684 (help-mode)
2685 (goto-char 1))
2686 (t
2687 (insert "\n\nYASnippet tables by NAMEHASH: \n")
2688 (dolist (table (append active-tables remain-tables))
2689 (insert (format "\nSnippet table `%s':\n\n" (yas--table-name table)))
2690 (let ((keys))
2691 (maphash #'(lambda (k _v)
2692 (push k keys))
2693 (yas--table-hash table))
2694 (dolist (key keys)
2695 (insert (format " key %s maps snippets: %s\n" key
2696 (let ((names))
2697 (maphash #'(lambda (k _v)
2698 (push k names))
2699 (gethash key (yas--table-hash table)))
2700 names))))))))
2701 (goto-char 1)
2702 (setq buffer-read-only t))
2703 (display-buffer buffer)))
2704
2705 (defun yas--describe-pretty-table (table &optional original-buffer)
2706 (insert (format "\nSnippet table `%s'"
2707 (yas--table-name table)))
2708 (if (yas--table-parents table)
2709 (insert (format " parents: %s\n"
2710 (mapcar #'yas--table-name
2711 (yas--table-parents table))))
2712 (insert "\n"))
2713 (insert (make-string 100 ?-) "\n")
2714 (insert "group state name key binding\n")
2715 (let ((groups-hash (make-hash-table :test #'equal)))
2716 (maphash #'(lambda (_k v)
2717 (let ((group (or (yas--template-fine-group v)
2718 "(top level)")))
2719 (when (yas--template-name v)
2720 (puthash group
2721 (cons v (gethash group groups-hash))
2722 groups-hash))))
2723 (yas--table-uuidhash table))
2724 (maphash
2725 #'(lambda (group templates)
2726 (setq group (truncate-string-to-width group 25 0 ? "..."))
2727 (insert (make-string 100 ?-) "\n")
2728 (dolist (p templates)
2729 (let ((name (truncate-string-to-width (propertize (format "\\\\snippet `%s'" (yas--template-name p))
2730 'yasnippet p)
2731 50 0 ? "..."))
2732 (group (prog1 group
2733 (setq group (make-string (length group) ? ))))
2734 (condition-string (let ((condition (yas--template-condition p)))
2735 (if (and condition
2736 original-buffer)
2737 (with-current-buffer original-buffer
2738 (if (yas--eval-condition condition)
2739 "(y)"
2740 "(s)"))
2741 "(a)"))))
2742 (insert group " ")
2743 (insert condition-string " ")
2744 (insert name
2745 (if (string-match "\\.\\.\\.$" name)
2746 "'"
2747 " ")
2748 " ")
2749 (insert (truncate-string-to-width (or (yas--template-key p) "")
2750 15 0 ? "...") " ")
2751 (insert (truncate-string-to-width (key-description (yas--template-keybinding p))
2752 15 0 ? "...") " ")
2753 (insert "\n"))))
2754 groups-hash)))
2755
2756
2757 \f
2758 ;;; User convenience functions, for using in snippet definitions
2759
2760 (defvar yas-modified-p nil
2761 "Non-nil if field has been modified by user or transformation.")
2762
2763 (defvar yas-moving-away-p nil
2764 "Non-nil if user is about to exit field.")
2765
2766 (defvar yas-text nil
2767 "Contains current field text.")
2768
2769 (defun yas-substr (str pattern &optional subexp)
2770 "Search PATTERN in STR and return SUBEXPth match.
2771
2772 If found, the content of subexp group SUBEXP (default 0) is
2773 returned, or else the original STR will be returned."
2774 (let ((grp (or subexp 0)))
2775 (save-match-data
2776 (if (string-match pattern str)
2777 (match-string-no-properties grp str)
2778 str))))
2779
2780 (defun yas-choose-value (&rest possibilities)
2781 "Prompt for a string in POSSIBILITIES and return it.
2782
2783 The last element of POSSIBILITIES may be a list of strings."
2784 (unless (or yas-moving-away-p
2785 yas-modified-p)
2786 (let* ((last-link (last possibilities))
2787 (last-elem (car last-link)))
2788 (when (listp last-elem)
2789 (setcar last-link (car last-elem))
2790 (setcdr last-link (cdr last-elem))))
2791 (some #'(lambda (fn)
2792 (funcall fn "Choose: " possibilities))
2793 yas-prompt-functions)))
2794
2795 (defun yas-key-to-value (alist)
2796 (unless (or yas-moving-away-p
2797 yas-modified-p)
2798 (let ((key (read-key-sequence "")))
2799 (when (stringp key)
2800 (or (cdr (find key alist :key #'car :test #'string=))
2801 key)))))
2802
2803 (defun yas-throw (text)
2804 "Throw a yas--exception with TEXT as the reason."
2805 (throw 'yas--exception (cons 'yas--exception text)))
2806
2807 (defun yas-verify-value (possibilities)
2808 "Verify that the current field value is in POSSIBILITIES.
2809
2810 Otherwise throw exception."
2811 (when (and yas-moving-away-p (notany #'(lambda (pos) (string= pos yas-text)) possibilities))
2812 (yas-throw (yas--format "Field only allows %s" possibilities))))
2813
2814 (defun yas-field-value (number)
2815 "Get the string for field with NUMBER.
2816
2817 Use this in primary and mirror transformations to tget."
2818 (let* ((snippet (car (yas--snippets-at-point)))
2819 (field (and snippet
2820 (yas--snippet-find-field snippet number))))
2821 (when field
2822 (yas--field-text-for-display field))))
2823
2824 (defun yas-text ()
2825 "Return `yas-text' if that exists and is non-empty, else nil."
2826 (if (and yas-text
2827 (not (string= "" yas-text)))
2828 yas-text))
2829
2830 (defun yas-selected-text ()
2831 "Return `yas-selected-text' if that exists and is non-empty, else nil."
2832 (if (and yas-selected-text
2833 (not (string= "" yas-selected-text)))
2834 yas-selected-text))
2835
2836 (defun yas--get-field-once (number &optional transform-fn)
2837 (unless yas-modified-p
2838 (if transform-fn
2839 (funcall transform-fn (yas-field-value number))
2840 (yas-field-value number))))
2841
2842 (defun yas-default-from-field (number)
2843 (unless yas-modified-p
2844 (yas-field-value number)))
2845
2846 (defun yas-inside-string ()
2847 "Return non-nil if the point is inside a string according to font-lock."
2848 (equal 'font-lock-string-face (get-char-property (1- (point)) 'face)))
2849
2850 (defun yas-unimplemented (&optional missing-feature)
2851 (if yas--current-template
2852 (if (y-or-n-p (format "This snippet is unimplemented (missing %s) Visit the snippet definition? "
2853 (or missing-feature
2854 "something")))
2855 (yas--visit-snippet-file-1 yas--current-template))
2856 (message "No implementation. Missing %s" (or missing-feature "something"))))
2857
2858 \f
2859 ;;; Snippet expansion and field management
2860
2861 (defvar yas--active-field-overlay nil
2862 "Overlays the currently active field.")
2863
2864 (defvar yas--field-protection-overlays nil
2865 "Two overlays protect the current active field.")
2866
2867 (defvar yas-selected-text nil
2868 "The selected region deleted on the last snippet expansion.")
2869
2870 (defvar yas--start-column nil
2871 "The column where the snippet expansion started.")
2872
2873 (make-variable-buffer-local 'yas--active-field-overlay)
2874 (make-variable-buffer-local 'yas--field-protection-overlays)
2875 (put 'yas--active-field-overlay 'permanent-local t)
2876 (put 'yas--field-protection-overlays 'permanent-local t)
2877
2878 (defstruct (yas--snippet (:constructor yas--make-snippet ()))
2879 "A snippet.
2880
2881 ..."
2882 (fields '())
2883 (exit nil)
2884 (id (yas--snippet-next-id) :read-only t)
2885 (control-overlay nil)
2886 active-field
2887 ;; stacked expansion: the `previous-active-field' slot saves the
2888 ;; active field where the child expansion took place
2889 previous-active-field
2890 force-exit)
2891
2892 (defstruct (yas--field (:constructor yas--make-field (number start end parent-field)))
2893 "A field.
2894
2895 NUMBER is the field number.
2896 START and END are mostly buffer markers, but see \"apropos markers-to-points\".
2897 PARENT-FIELD is a `yas--field' this field is nested under, or nil.
2898 MIRRORS is a list of `yas--mirror's
2899 TRANSFORM is a lisp form.
2900 MODIFIED-P is a boolean set to true once user inputs text.
2901 NEXT is another `yas--field' or `yas--mirror' or `yas--exit'.
2902 "
2903 number
2904 start end
2905 parent-field
2906 (mirrors '())
2907 (transform nil)
2908 (modified-p nil)
2909 next)
2910
2911
2912 (defstruct (yas--mirror (:constructor yas--make-mirror (start end transform)))
2913 "A mirror.
2914
2915 START and END are mostly buffer markers, but see \"apropos markers-to-points\".
2916 TRANSFORM is a lisp form.
2917 PARENT-FIELD is a `yas--field' this mirror is nested under, or nil.
2918 NEXT is another `yas--field' or `yas--mirror' or `yas--exit'
2919 DEPTH is a count of how many nested mirrors can affect this mirror"
2920 start end
2921 (transform nil)
2922 parent-field
2923 next
2924 depth)
2925
2926 (defstruct (yas--exit (:constructor yas--make-exit (marker)))
2927 marker
2928 next)
2929
2930 (defun yas--apply-transform (field-or-mirror field &optional empty-on-nil-p)
2931 "Calculate transformed string for FIELD-OR-MIRROR from FIELD.
2932
2933 If there is no transform for ht field, return nil.
2934
2935 If there is a transform but it returns nil, return the empty
2936 string iff EMPTY-ON-NIL-P is true."
2937 (let* ((yas-text (yas--field-text-for-display field))
2938 (yas-modified-p (yas--field-modified-p field))
2939 (yas-moving-away-p nil)
2940 (transform (if (yas--mirror-p field-or-mirror)
2941 (yas--mirror-transform field-or-mirror)
2942 (yas--field-transform field-or-mirror)))
2943 (start-point (if (yas--mirror-p field-or-mirror)
2944 (yas--mirror-start field-or-mirror)
2945 (yas--field-start field-or-mirror)))
2946 (transformed (and transform
2947 (save-excursion
2948 (goto-char start-point)
2949 (let ((ret (yas--eval-lisp transform)))
2950 (or ret (and empty-on-nil-p "")))))))
2951 transformed))
2952
2953 (defsubst yas--replace-all (from to &optional text)
2954 "Replace all occurrences from FROM to TO.
2955
2956 With optional string TEXT do it in that string."
2957 (if text
2958 (replace-regexp-in-string (regexp-quote from) to text t t)
2959 (goto-char (point-min))
2960 (while (search-forward from nil t)
2961 (replace-match to t t text))))
2962
2963 (defun yas--snippet-find-field (snippet number)
2964 (find-if #'(lambda (field)
2965 (eq number (yas--field-number field)))
2966 (yas--snippet-fields snippet)))
2967
2968 (defun yas--snippet-sort-fields (snippet)
2969 "Sort the fields of SNIPPET in navigation order."
2970 (setf (yas--snippet-fields snippet)
2971 (sort (yas--snippet-fields snippet)
2972 #'yas--snippet-field-compare)))
2973
2974 (defun yas--snippet-field-compare (field1 field2)
2975 "Compare FIELD1 and FIELD2.
2976
2977 The field with a number is sorted first. If they both have a
2978 number, compare through the number. If neither have, compare
2979 through the field's start point"
2980 (let ((n1 (yas--field-number field1))
2981 (n2 (yas--field-number field2)))
2982 (if n1
2983 (if n2
2984 (or (zerop n2) (and (not (zerop n1))
2985 (< n1 n2)))
2986 (not (zerop n1)))
2987 (if n2
2988 (zerop n2)
2989 (< (yas--field-start field1)
2990 (yas--field-start field2))))))
2991
2992 (defun yas--field-probably-deleted-p (snippet field)
2993 "Guess if SNIPPET's FIELD should be skipped."
2994 (and
2995 ;; field must be zero length
2996 ;;
2997 (zerop (- (yas--field-start field) (yas--field-end field)))
2998 ;; skip if:
2999 (or
3000 ;; 1) is a nested field and it's been modified
3001 ;;
3002 (and (yas--field-parent-field field)
3003 (yas--field-modified-p field))
3004 ;; 2) ends just before the snippet end
3005 ;;
3006 (and (eq field (car (last (yas--snippet-fields snippet))))
3007 (= (yas--field-start field) (overlay-end (yas--snippet-control-overlay snippet)))))
3008 ;; the field numbered 0, just before the exit marker, should
3009 ;; never be skipped
3010 ;;
3011 (not (zerop (yas--field-number field)))))
3012
3013 (defun yas--snippets-at-point (&optional all-snippets)
3014 "Return a sorted list of snippets at point.
3015
3016 The most recently-inserted snippets are returned first."
3017 (sort
3018 (remove nil (remove-duplicates (mapcar #'(lambda (ov)
3019 (overlay-get ov 'yas--snippet))
3020 (if all-snippets
3021 (overlays-in (point-min) (point-max))
3022 (nconc (overlays-at (point)) (overlays-at (1- (point))))))))
3023 #'(lambda (s1 s2)
3024 (<= (yas--snippet-id s2) (yas--snippet-id s1)))))
3025
3026 (defun yas-next-field-or-maybe-expand ()
3027 "Try to expand a snippet at a key before point.
3028
3029 Otherwise delegate to `yas-next-field'."
3030 (interactive)
3031 (if yas-triggers-in-field
3032 (let ((yas-fallback-behavior 'return-nil)
3033 (active-field (overlay-get yas--active-field-overlay 'yas--field)))
3034 (when active-field
3035 (unless (yas-expand-from-trigger-key active-field)
3036 (yas-next-field))))
3037 (yas-next-field)))
3038
3039 (defun yas-next-field (&optional arg)
3040 "Navigate to the ARGth next field.
3041
3042 If there's none, exit the snippet."
3043 (interactive)
3044 (let* ((arg (or arg
3045 1))
3046 (snippet (first (yas--snippets-at-point)))
3047 (active-field (overlay-get yas--active-field-overlay 'yas--field))
3048 (live-fields (remove-if #'(lambda (field)
3049 (and (not (eq field active-field))
3050 (yas--field-probably-deleted-p snippet field)))
3051 (yas--snippet-fields snippet)))
3052 (active-field-pos (position active-field live-fields))
3053 (target-pos (and active-field-pos (+ arg active-field-pos)))
3054 (target-field (and target-pos (nth target-pos live-fields))))
3055 ;; First check if we're moving out of a field with a transform
3056 ;;
3057 (when (and active-field
3058 (yas--field-transform active-field))
3059 (let* ((yas-moving-away-p t)
3060 (yas-text (yas--field-text-for-display active-field))
3061 (yas-modified-p (yas--field-modified-p active-field)))
3062 ;; primary field transform: exit call to field-transform
3063 (yas--eval-lisp (yas--field-transform active-field))))
3064 ;; Now actually move...
3065 (cond ((and target-pos (>= target-pos (length live-fields)))
3066 (yas-exit-snippet snippet))
3067 (target-field
3068 (yas--move-to-field snippet target-field))
3069 (t
3070 nil))))
3071
3072 (defun yas--place-overlays (snippet field)
3073 "Correctly place overlays for SNIPPET's FIELD."
3074 (yas--make-move-field-protection-overlays snippet field)
3075 (yas--make-move-active-field-overlay snippet field))
3076
3077 (defun yas--move-to-field (snippet field)
3078 "Update SNIPPET to move to field FIELD.
3079
3080 Also create some protection overlays"
3081 (goto-char (yas--field-start field))
3082 (yas--place-overlays snippet field)
3083 (overlay-put yas--active-field-overlay 'yas--field field)
3084 (let ((number (yas--field-number field)))
3085 ;; check for the special ${0: ...} field
3086 (if (and number (zerop number))
3087 (progn
3088 (set-mark (yas--field-end field))
3089 (setf (yas--snippet-force-exit snippet)
3090 (or (yas--field-transform field)
3091 t)))
3092 ;; make this field active
3093 (setf (yas--snippet-active-field snippet) field)
3094 ;; primary field transform: first call to snippet transform
3095 (unless (yas--field-modified-p field)
3096 (if (yas--field-update-display field)
3097 (yas--update-mirrors snippet)
3098 (setf (yas--field-modified-p field) nil))))))
3099
3100 (defun yas-prev-field ()
3101 "Navigate to prev field. If there's none, exit the snippet."
3102 (interactive)
3103 (yas-next-field -1))
3104
3105 (defun yas-abort-snippet (&optional snippet)
3106 (interactive)
3107 (let ((snippet (or snippet
3108 (car (yas--snippets-at-point)))))
3109 (when snippet
3110 (setf (yas--snippet-force-exit snippet) t))))
3111
3112 (defun yas-exit-snippet (snippet)
3113 "Goto exit-marker of SNIPPET."
3114 (interactive (list (first (yas--snippets-at-point))))
3115 (when snippet
3116 (setf (yas--snippet-force-exit snippet) t)
3117 (goto-char (if (yas--snippet-exit snippet)
3118 (yas--exit-marker (yas--snippet-exit snippet))
3119 (overlay-end (yas--snippet-control-overlay snippet))))))
3120
3121 (defun yas-exit-all-snippets ()
3122 "Exit all snippets."
3123 (interactive)
3124 (mapc #'(lambda (snippet)
3125 (yas-exit-snippet snippet)
3126 (yas--check-commit-snippet))
3127 (yas--snippets-at-point 'all-snippets)))
3128
3129 \f
3130 ;;; Some low level snippet-routines:
3131
3132 (defvar yas--inhibit-overlay-hooks nil
3133 "Bind this temporarily to non-nil to prevent running `yas--on-*-modification'.")
3134
3135 (defmacro yas--inhibit-overlay-hooks (&rest body)
3136 "Run BODY with `yas--inhibit-overlay-hooks' set to t."
3137 (declare (indent 0))
3138 `(let ((yas--inhibit-overlay-hooks t))
3139 ,@body))
3140
3141 (defvar yas-snippet-beg nil "Beginning position of the last snippet committed.")
3142 (defvar yas-snippet-end nil "End position of the last snippet committed.")
3143
3144 (defun yas--commit-snippet (snippet)
3145 "Commit SNIPPET, but leave point as it is.
3146
3147 This renders the snippet as ordinary text."
3148
3149 (let ((control-overlay (yas--snippet-control-overlay snippet)))
3150 ;;
3151 ;; Save the end of the moribund snippet in case we need to revive it
3152 ;; its original expansion.
3153 ;;
3154 (when (and control-overlay
3155 (overlay-buffer control-overlay))
3156 (setq yas-snippet-beg (overlay-start control-overlay))
3157 (setq yas-snippet-end (overlay-end control-overlay))
3158 (delete-overlay control-overlay))
3159
3160 (yas--inhibit-overlay-hooks
3161 (when yas--active-field-overlay
3162 (delete-overlay yas--active-field-overlay))
3163 (when yas--field-protection-overlays
3164 (mapc #'delete-overlay yas--field-protection-overlays)))
3165
3166 ;; stacked expansion: if the original expansion took place from a
3167 ;; field, make sure we advance it here at least to
3168 ;; `yas-snippet-end'...
3169 ;;
3170 (let ((previous-field (yas--snippet-previous-active-field snippet)))
3171 (when (and yas-snippet-end previous-field)
3172 (yas--advance-end-maybe previous-field yas-snippet-end)))
3173
3174 ;; Convert all markers to points,
3175 ;;
3176 (yas--markers-to-points snippet)
3177
3178 ;; Take care of snippet revival
3179 ;;
3180 (if yas-snippet-revival
3181 (push `(apply yas--snippet-revive ,yas-snippet-beg ,yas-snippet-end ,snippet)
3182 buffer-undo-list)
3183 ;; Dismember the snippet... this is useful if we get called
3184 ;; again from `yas--take-care-of-redo'....
3185 (setf (yas--snippet-fields snippet) nil)))
3186
3187 (yas--message 3 "Snippet %s exited." (yas--snippet-id snippet)))
3188
3189 (defun yas--safely-run-hooks (hook-var)
3190 (condition-case error
3191 (run-hooks hook-var)
3192 (error
3193 (yas--message 3 "%s error: %s" hook-var (error-message-string error)))))
3194
3195
3196 (defun yas--check-commit-snippet ()
3197 "Check if point exited the currently active field of the snippet.
3198
3199 If so cleans up the whole snippet up."
3200 (let* ((snippets (yas--snippets-at-point 'all-snippets))
3201 (snippets-left snippets)
3202 (snippet-exit-transform))
3203 (dolist (snippet snippets)
3204 (let ((active-field (yas--snippet-active-field snippet)))
3205 (setq snippet-exit-transform (yas--snippet-force-exit snippet))
3206 (cond ((or snippet-exit-transform
3207 (not (and active-field (yas--field-contains-point-p active-field))))
3208 (setq snippets-left (delete snippet snippets-left))
3209 (setf (yas--snippet-force-exit snippet) nil)
3210 (yas--commit-snippet snippet))
3211 ((and active-field
3212 (or (not yas--active-field-overlay)
3213 (not (overlay-buffer yas--active-field-overlay))))
3214 ;;
3215 ;; stacked expansion: this case is mainly for recent
3216 ;; snippet exits that place us back int the field of
3217 ;; another snippet
3218 ;;
3219 (save-excursion
3220 (yas--move-to-field snippet active-field)
3221 (yas--update-mirrors snippet)))
3222 (t
3223 nil))))
3224 (unless (or (null snippets) snippets-left)
3225 (if snippet-exit-transform
3226 (yas--eval-lisp-no-saves snippet-exit-transform))
3227 (yas--safely-run-hooks 'yas-after-exit-snippet-hook))))
3228
3229 ;; Apropos markers-to-points:
3230 ;;
3231 ;; This was found useful for performance reasons, so that an
3232 ;; excessive number of live markers aren't kept around in the
3233 ;; `buffer-undo-list'. However, in `markers-to-points', the
3234 ;; set-to-nil markers can't simply be discarded and replaced with
3235 ;; fresh ones in `points-to-markers'. The original marker that was
3236 ;; just set to nil has to be reused.
3237 ;;
3238 ;; This shouldn't bring horrible problems with undo/redo, but it
3239 ;; you never know
3240 ;;
3241 (defun yas--markers-to-points (snippet)
3242 "Convert all markers in SNIPPET to a cons (POINT . MARKER)
3243 where POINT is the original position of the marker and MARKER is
3244 the original marker object with the position set to nil."
3245 (dolist (field (yas--snippet-fields snippet))
3246 (let ((start (marker-position (yas--field-start field)))
3247 (end (marker-position (yas--field-end field))))
3248 (set-marker (yas--field-start field) nil)
3249 (set-marker (yas--field-end field) nil)
3250 (setf (yas--field-start field) (cons start (yas--field-start field)))
3251 (setf (yas--field-end field) (cons end (yas--field-end field))))
3252 (dolist (mirror (yas--field-mirrors field))
3253 (let ((start (marker-position (yas--mirror-start mirror)))
3254 (end (marker-position (yas--mirror-end mirror))))
3255 (set-marker (yas--mirror-start mirror) nil)
3256 (set-marker (yas--mirror-end mirror) nil)
3257 (setf (yas--mirror-start mirror) (cons start (yas--mirror-start mirror)))
3258 (setf (yas--mirror-end mirror) (cons end (yas--mirror-end mirror))))))
3259 (let ((snippet-exit (yas--snippet-exit snippet)))
3260 (when snippet-exit
3261 (let ((exit (marker-position (yas--exit-marker snippet-exit))))
3262 (set-marker (yas--exit-marker snippet-exit) nil)
3263 (setf (yas--exit-marker snippet-exit) (cons exit (yas--exit-marker snippet-exit)))))))
3264
3265 (defun yas--points-to-markers (snippet)
3266 "Convert all cons (POINT . MARKER) in SNIPPET to markers.
3267
3268 This is done by setting MARKER to POINT with `set-marker'."
3269 (dolist (field (yas--snippet-fields snippet))
3270 (setf (yas--field-start field) (set-marker (cdr (yas--field-start field))
3271 (car (yas--field-start field))))
3272 (setf (yas--field-end field) (set-marker (cdr (yas--field-end field))
3273 (car (yas--field-end field))))
3274 (dolist (mirror (yas--field-mirrors field))
3275 (setf (yas--mirror-start mirror) (set-marker (cdr (yas--mirror-start mirror))
3276 (car (yas--mirror-start mirror))))
3277 (setf (yas--mirror-end mirror) (set-marker (cdr (yas--mirror-end mirror))
3278 (car (yas--mirror-end mirror))))))
3279 (let ((snippet-exit (yas--snippet-exit snippet)))
3280 (when snippet-exit
3281 (setf (yas--exit-marker snippet-exit) (set-marker (cdr (yas--exit-marker snippet-exit))
3282 (car (yas--exit-marker snippet-exit)))))))
3283
3284 (defun yas--field-contains-point-p (field &optional point)
3285 (let ((point (or point
3286 (point))))
3287 (and (>= point (yas--field-start field))
3288 (<= point (yas--field-end field)))))
3289
3290 (defun yas--field-text-for-display (field)
3291 "Return the propertized display text for field FIELD."
3292 (buffer-substring (yas--field-start field) (yas--field-end field)))
3293
3294 (defun yas--undo-in-progress ()
3295 "True if some kind of undo is in progress."
3296 (or undo-in-progress
3297 (eq this-command 'undo)
3298 (eq this-command 'redo)))
3299
3300 (defun yas--make-control-overlay (snippet start end)
3301 "Create the control overlay that surrounds the snippet and
3302 holds the keymap."
3303 (let ((overlay (make-overlay start
3304 end
3305 nil
3306 nil
3307 t)))
3308 (overlay-put overlay 'keymap yas-keymap)
3309 (overlay-put overlay 'priority 100)
3310 (overlay-put overlay 'yas--snippet snippet)
3311 overlay))
3312
3313 (defun yas-skip-and-clear-or-delete-char (&optional field)
3314 "Clears unmodified field if at field start, skips to next tab.
3315
3316 Otherwise deletes a character normally by calling `delete-char'."
3317 (interactive)
3318 (let ((field (or field
3319 (and yas--active-field-overlay
3320 (overlay-buffer yas--active-field-overlay)
3321 (overlay-get yas--active-field-overlay 'yas--field)))))
3322 (cond ((and field
3323 (not (yas--field-modified-p field))
3324 (eq (point) (marker-position (yas--field-start field))))
3325 (yas--skip-and-clear field)
3326 (yas-next-field 1))
3327 (t
3328 (call-interactively 'delete-char)))))
3329
3330 (defun yas--skip-and-clear (field)
3331 "Deletes the region of FIELD and sets it's modified state to t."
3332 ;; Just before skipping-and-clearing the field, mark its children
3333 ;; fields as modified, too. If the children have mirrors-in-fields
3334 ;; this prevents them from updating erroneously (we're skipping and
3335 ;; deleting!).
3336 ;;
3337 (yas--mark-this-and-children-modified field)
3338 (delete-region (yas--field-start field) (yas--field-end field)))
3339
3340 (defun yas--mark-this-and-children-modified (field)
3341 (setf (yas--field-modified-p field) t)
3342 (let ((fom (yas--field-next field)))
3343 (while (and fom
3344 (yas--fom-parent-field fom))
3345 (when (and (eq (yas--fom-parent-field fom) field)
3346 (yas--field-p fom))
3347 (yas--mark-this-and-children-modified fom))
3348 (setq fom (yas--fom-next fom)))))
3349
3350 (defun yas--make-move-active-field-overlay (snippet field)
3351 "Place the active field overlay in SNIPPET's FIELD.
3352
3353 Move the overlay, or create it if it does not exit."
3354 (if (and yas--active-field-overlay
3355 (overlay-buffer yas--active-field-overlay))
3356 (move-overlay yas--active-field-overlay
3357 (yas--field-start field)
3358 (yas--field-end field))
3359 (setq yas--active-field-overlay
3360 (make-overlay (yas--field-start field)
3361 (yas--field-end field)
3362 nil nil t))
3363 (overlay-put yas--active-field-overlay 'priority 100)
3364 (overlay-put yas--active-field-overlay 'face 'yas-field-highlight-face)
3365 (overlay-put yas--active-field-overlay 'yas--snippet snippet)
3366 (overlay-put yas--active-field-overlay 'modification-hooks '(yas--on-field-overlay-modification))
3367 (overlay-put yas--active-field-overlay 'insert-in-front-hooks
3368 '(yas--on-field-overlay-modification))
3369 (overlay-put yas--active-field-overlay 'insert-behind-hooks
3370 '(yas--on-field-overlay-modification))))
3371
3372 (defun yas--on-field-overlay-modification (overlay after? _beg _end &optional _length)
3373 "Clears the field and updates mirrors, conditionally.
3374
3375 Only clears the field if it hasn't been modified and it point it
3376 at field start. This hook doesn't do anything if an undo is in
3377 progress."
3378 (unless (or yas--inhibit-overlay-hooks
3379 (yas--undo-in-progress))
3380 (let* ((field (overlay-get overlay 'yas--field))
3381 (snippet (overlay-get yas--active-field-overlay 'yas--snippet)))
3382 (cond (after?
3383 (yas--advance-end-maybe field (overlay-end overlay))
3384 (save-excursion
3385 (yas--field-update-display field))
3386 (yas--update-mirrors snippet))
3387 (field
3388 (when (and (not after?)
3389 (not (yas--field-modified-p field))
3390 (eq (point) (if (markerp (yas--field-start field))
3391 (marker-position (yas--field-start field))
3392 (yas--field-start field))))
3393 (yas--skip-and-clear field))
3394 (setf (yas--field-modified-p field) t))))))
3395 \f
3396 ;;; Apropos protection overlays:
3397 ;;
3398 ;; These exist for nasty users who will try to delete parts of the
3399 ;; snippet outside the active field. Actual protection happens in
3400 ;; `yas--on-protection-overlay-modification'.
3401 ;;
3402 ;; Currently this signals an error which inhibits the command. For
3403 ;; commands that move point (like `kill-line'), point is restored in
3404 ;; the `yas--post-command-handler' using a global
3405 ;; `yas--protection-violation' variable.
3406 ;;
3407 ;; Alternatively, I've experimented with an implementation that
3408 ;; commits the snippet before actually calling `this-command'
3409 ;; interactively, and then signals an error, which is ignored. but
3410 ;; blocks all other million modification hooks. This presented some
3411 ;; problems with stacked expansion.
3412 ;;
3413 (defun yas--make-move-field-protection-overlays (snippet field)
3414 "Place protection overlays surrounding SNIPPET's FIELD.
3415
3416 Move the overlays, or create them if they do not exit."
3417 (let ((start (yas--field-start field))
3418 (end (yas--field-end field)))
3419 ;; First check if the (1+ end) is contained in the buffer,
3420 ;; otherwise we'll have to do a bit of cheating and silently
3421 ;; insert a newline. the `(1+ (buffer-size))' should prevent this
3422 ;; when using stacked expansion
3423 ;;
3424 (when (< (buffer-size) end)
3425 (save-excursion
3426 (yas--inhibit-overlay-hooks
3427 (goto-char (point-max))
3428 (newline))))
3429 ;; go on to normal overlay creation/moving
3430 ;;
3431 (cond ((and yas--field-protection-overlays
3432 (every #'overlay-buffer yas--field-protection-overlays))
3433 (move-overlay (first yas--field-protection-overlays) (1- start) start)
3434 (move-overlay (second yas--field-protection-overlays) end (1+ end)))
3435 (t
3436 (setq yas--field-protection-overlays
3437 (list (make-overlay (1- start) start nil t nil)
3438 (make-overlay end (1+ end) nil t nil)))
3439 (dolist (ov yas--field-protection-overlays)
3440 (overlay-put ov 'face 'yas--field-debug-face)
3441 (overlay-put ov 'yas--snippet snippet)
3442 ;; (overlay-put ov 'evaporate t)
3443 (overlay-put ov 'modification-hooks '(yas--on-protection-overlay-modification)))))))
3444
3445 (defvar yas--protection-violation nil
3446 "When non-nil, signals attempts to erroneously exit or modify the snippet.
3447
3448 Functions in the `post-command-hook', for example
3449 `yas--post-command-handler' can check it and reset its value to
3450 nil. The variables value is the point where the violation
3451 originated")
3452
3453 (defun yas--on-protection-overlay-modification (_overlay after? _beg _end &optional _length)
3454 "Signals a snippet violation, then issues error.
3455
3456 The error should be ignored in `debug-ignored-errors'"
3457 (unless yas--inhibit-overlay-hooks
3458 (cond ((not (or after?
3459 (yas--undo-in-progress)))
3460 (setq yas--protection-violation (point))
3461 (error "Exit the snippet first!")))))
3462
3463 (add-to-list 'debug-ignored-errors "^Exit the snippet first!$")
3464
3465 \f
3466 ;;; Snippet expansion and "stacked" expansion:
3467 ;;
3468 ;; Stacked expansion is when you try to expand a snippet when already
3469 ;; inside a snippet expansion.
3470 ;;
3471 ;; The parent snippet does not run its fields modification hooks
3472 ;; (`yas--on-field-overlay-modification' and
3473 ;; `yas--on-protection-overlay-modification') while the child snippet
3474 ;; is active. This means, among other things, that the mirrors of the
3475 ;; parent snippet are not updated, this only happening when one exits
3476 ;; the child snippet.
3477 ;;
3478 ;; Unfortunately, this also puts some ugly (and not fully-tested)
3479 ;; bits of code in `yas-expand-snippet' and
3480 ;; `yas--commit-snippet'. I've tried to mark them with "stacked
3481 ;; expansion:".
3482 ;;
3483 ;; This was thought to be safer in an undo/redo perspective, but
3484 ;; maybe the correct implementation is to make the globals
3485 ;; `yas--active-field-overlay' and `yas--field-protection-overlays' be
3486 ;; snippet-local and be active even while the child snippet is
3487 ;; running. This would mean a lot of overlay modification hooks
3488 ;; running, but if managed correctly (including overlay priorities)
3489 ;; they should account for all situations...
3490 ;;
3491 (defun yas-expand-snippet (content &optional start end expand-env)
3492 "Expand snippet CONTENT at current point.
3493
3494 Text between START and END will be deleted before inserting
3495 template. EXPAND-ENV is are let-style variable to value bindings
3496 considered when expanding the snippet."
3497 (run-hooks 'yas-before-expand-snippet-hook)
3498
3499 ;;
3500 (let* ((yas-selected-text (or yas-selected-text
3501 (and (region-active-p)
3502 (buffer-substring-no-properties (region-beginning)
3503 (region-end)))))
3504 (start (or start
3505 (and (region-active-p)
3506 (region-beginning))
3507 (point)))
3508 (end (or end
3509 (and (region-active-p)
3510 (region-end))
3511 (point)))
3512 (to-delete (and start
3513 end
3514 (buffer-substring-no-properties start end)))
3515 snippet)
3516 (goto-char start)
3517 (setq yas--indent-original-column (current-column))
3518 ;; Delete the region to delete, this *does* get undo-recorded.
3519 ;;
3520 (when (and to-delete
3521 (> end start))
3522 (delete-region start end))
3523
3524 (cond ((listp content)
3525 ;; x) This is a snippet-command
3526 ;;
3527 (yas--eval-lisp-no-saves content))
3528 (t
3529 ;; x) This is a snippet-snippet :-)
3530 ;;
3531 ;; Narrow the region down to the content, shoosh the
3532 ;; `buffer-undo-list', and create the snippet, the new
3533 ;; snippet updates its mirrors once, so we are left with
3534 ;; some plain text. The undo action for deleting this
3535 ;; plain text will get recorded at the end.
3536 ;;
3537 ;; stacked expansion: also shoosh the overlay modification hooks
3538 (let ((buffer-undo-list t))
3539 ;; snippet creation might evaluate users elisp, which
3540 ;; might generate errors, so we have to be ready to catch
3541 ;; them mostly to make the undo information
3542 ;;
3543 (setq yas--start-column (current-column))
3544 (yas--inhibit-overlay-hooks
3545 (setq snippet
3546 (if expand-env
3547 (eval `(let* ,expand-env
3548 (insert content)
3549 (yas--snippet-create start (point))))
3550 (insert content)
3551 (yas--snippet-create start (point))))))
3552
3553 ;; stacked-expansion: This checks for stacked expansion, save the
3554 ;; `yas--previous-active-field' and advance its boundary.
3555 ;;
3556 (let ((existing-field (and yas--active-field-overlay
3557 (overlay-buffer yas--active-field-overlay)
3558 (overlay-get yas--active-field-overlay 'yas--field))))
3559 (when existing-field
3560 (setf (yas--snippet-previous-active-field snippet) existing-field)
3561 (yas--advance-end-maybe existing-field (overlay-end yas--active-field-overlay))))
3562
3563 ;; Exit the snippet immediately if no fields
3564 ;;
3565 (unless (yas--snippet-fields snippet)
3566 (yas-exit-snippet snippet))
3567
3568 ;; Push two undo actions: the deletion of the inserted contents of
3569 ;; the new snippet (without the "key") followed by an apply of
3570 ;; `yas--take-care-of-redo' on the newly inserted snippet boundaries
3571 ;;
3572 ;; A small exception, if `yas-also-auto-indent-first-line'
3573 ;; is t and `yas--indent' decides to indent the line to a
3574 ;; point before the actual expansion point, undo would be
3575 ;; messed up. We call the early point "newstart"". case,
3576 ;; and attempt to fix undo.
3577 ;;
3578 (let ((newstart (overlay-start (yas--snippet-control-overlay snippet)))
3579 (end (overlay-end (yas--snippet-control-overlay snippet))))
3580 (when (< newstart start)
3581 (push (cons (make-string (- start newstart) ? ) newstart) buffer-undo-list))
3582 (push (cons newstart end) buffer-undo-list)
3583 (push `(apply yas--take-care-of-redo ,start ,end ,snippet)
3584 buffer-undo-list))
3585 ;; Now, schedule a move to the first field
3586 ;;
3587 (let ((first-field (car (yas--snippet-fields snippet))))
3588 (when first-field
3589 (sit-for 0) ;; fix issue 125
3590 (yas--move-to-field snippet first-field)))
3591 (yas--message 3 "snippet expanded.")
3592 t))))
3593
3594 (defun yas--take-care-of-redo (_beg _end snippet)
3595 "Commits SNIPPET, which in turn pushes an undo action for reviving it.
3596
3597 Meant to exit in the `buffer-undo-list'."
3598 ;; slightly optimize: this action is only needed for snippets with
3599 ;; at least one field
3600 (when (yas--snippet-fields snippet)
3601 (yas--commit-snippet snippet)))
3602
3603 (defun yas--snippet-revive (beg end snippet)
3604 "Revives SNIPPET and creates a control overlay from BEG to END.
3605
3606 BEG and END are, we hope, the original snippets boundaries.
3607 All the markers/points exiting existing inside SNIPPET should point
3608 to their correct locations *at the time the snippet is revived*.
3609
3610 After revival, push the `yas--take-care-of-redo' in the
3611 `buffer-undo-list'"
3612 ;; Reconvert all the points to markers
3613 ;;
3614 (yas--points-to-markers snippet)
3615 ;; When at least one editable field existed in the zombie snippet,
3616 ;; try to revive the whole thing...
3617 ;;
3618 (let ((target-field (or (yas--snippet-active-field snippet)
3619 (car (yas--snippet-fields snippet)))))
3620 (when target-field
3621 (setf (yas--snippet-control-overlay snippet) (yas--make-control-overlay snippet beg end))
3622 (overlay-put (yas--snippet-control-overlay snippet) 'yas--snippet snippet)
3623
3624 (yas--move-to-field snippet target-field)
3625
3626 (push `(apply yas--take-care-of-redo ,beg ,end ,snippet)
3627 buffer-undo-list))))
3628
3629 (defun yas--snippet-create (begin end)
3630 "Create a snippet from a template inserted at BEGIN to END.
3631
3632 Returns the newly created snippet."
3633 (save-restriction
3634 (narrow-to-region begin end)
3635 (let ((snippet (yas--make-snippet)))
3636 (goto-char begin)
3637 (yas--snippet-parse-create snippet)
3638
3639 ;; Sort and link each field
3640 (yas--snippet-sort-fields snippet)
3641
3642 ;; Create keymap overlay for snippet
3643 (setf (yas--snippet-control-overlay snippet)
3644 (yas--make-control-overlay snippet (point-min) (point-max)))
3645
3646 ;; Move to end
3647 (goto-char (point-max))
3648
3649 snippet)))
3650
3651 \f
3652 ;;; Apropos adjacencies and "fom's":
3653 ;;
3654 ;; Once the $-constructs bits like "$n" and "${:n" are deleted in the
3655 ;; recently expanded snippet, we might actually have many fields,
3656 ;; mirrors (and the snippet exit) in the very same position in the
3657 ;; buffer. Therefore we need to single-link the
3658 ;; fields-or-mirrors-or-exit (which I have abbreviated to "fom")
3659 ;; according to their original positions in the buffer.
3660 ;;
3661 ;; Then we have operation `yas--advance-end-maybe' and
3662 ;; `yas--advance-start-maybe', which conditionally push the starts and
3663 ;; ends of these foms down the chain.
3664 ;;
3665 ;; This allows for like the printf with the magic ",":
3666 ;;
3667 ;; printf ("${1:%s}\\n"${1:$(if (string-match "%" text) "," "\);")} \
3668 ;; $2${1:$(if (string-match "%" text) "\);" "")}$0
3669 ;;
3670 (defun yas--fom-start (fom)
3671 (cond ((yas--field-p fom)
3672 (yas--field-start fom))
3673 ((yas--mirror-p fom)
3674 (yas--mirror-start fom))
3675 (t
3676 (yas--exit-marker fom))))
3677
3678 (defun yas--fom-end (fom)
3679 (cond ((yas--field-p fom)
3680 (yas--field-end fom))
3681 ((yas--mirror-p fom)
3682 (yas--mirror-end fom))
3683 (t
3684 (yas--exit-marker fom))))
3685
3686 (defun yas--fom-next (fom)
3687 (cond ((yas--field-p fom)
3688 (yas--field-next fom))
3689 ((yas--mirror-p fom)
3690 (yas--mirror-next fom))
3691 (t
3692 (yas--exit-next fom))))
3693
3694 (defun yas--fom-parent-field (fom)
3695 (cond ((yas--field-p fom)
3696 (yas--field-parent-field fom))
3697 ((yas--mirror-p fom)
3698 (yas--mirror-parent-field fom))
3699 (t
3700 nil)))
3701
3702 (defun yas--calculate-adjacencies (snippet)
3703 "Calculate adjacencies for fields or mirrors of SNIPPET.
3704
3705 This is according to their relative positions in the buffer, and
3706 has to be called before the $-constructs are deleted."
3707 (let* ((fom-set-next-fom
3708 (lambda (fom nextfom)
3709 (cond ((yas--field-p fom)
3710 (setf (yas--field-next fom) nextfom))
3711 ((yas--mirror-p fom)
3712 (setf (yas--mirror-next fom) nextfom))
3713 (t
3714 (setf (yas--exit-next fom) nextfom)))))
3715 (compare-fom-begs
3716 (lambda (fom1 fom2)
3717 (if (= (yas--fom-start fom2) (yas--fom-start fom1))
3718 (yas--mirror-p fom2)
3719 (>= (yas--fom-start fom2) (yas--fom-start fom1)))))
3720 (link-foms fom-set-next-fom))
3721 ;; make some yas--field, yas--mirror and yas--exit soup
3722 (let ((soup))
3723 (when (yas--snippet-exit snippet)
3724 (push (yas--snippet-exit snippet) soup))
3725 (dolist (field (yas--snippet-fields snippet))
3726 (push field soup)
3727 (dolist (mirror (yas--field-mirrors field))
3728 (push mirror soup)))
3729 (setq soup
3730 (sort soup compare-fom-begs))
3731 (when soup
3732 (reduce link-foms soup)))))
3733
3734 (defun yas--calculate-mirrors-in-fields (snippet mirror)
3735 "Attempt to assign a parent field of SNIPPET to the mirror MIRROR.
3736
3737 Use the tightest containing field if more than one field contains
3738 the mirror. Intended to be called *before* the dollar-regions are
3739 deleted."
3740 (let ((min (point-min))
3741 (max (point-max)))
3742 (dolist (field (yas--snippet-fields snippet))
3743 (when (and (<= (yas--field-start field) (yas--mirror-start mirror))
3744 (<= (yas--mirror-end mirror) (yas--field-end field))
3745 (< min (yas--field-start field))
3746 (< (yas--field-end field) max))
3747 (setq min (yas--field-start field)
3748 max (yas--field-end field))
3749 (setf (yas--mirror-parent-field mirror) field)))))
3750
3751 (defun yas--advance-end-maybe (fom newend)
3752 "Maybe advance FOM's end to NEWEND if it needs it.
3753
3754 If it does, also:
3755
3756 * call `yas--advance-start-maybe' on FOM's next fom.
3757
3758 * in case FOM is field call `yas--advance-end-maybe' on its parent
3759 field
3760
3761 Also, if FOM is an exit-marker, always call
3762 `yas--advance-start-maybe' on its next fom. This is because
3763 exit-marker have identical start and end markers."
3764 (cond ((and fom (< (yas--fom-end fom) newend))
3765 (set-marker (yas--fom-end fom) newend)
3766 (yas--advance-start-maybe (yas--fom-next fom) newend)
3767 (yas--advance-end-of-parents-maybe (yas--fom-parent-field fom) newend))
3768 ((yas--exit-p fom)
3769 (yas--advance-start-maybe (yas--fom-next fom) newend))))
3770
3771 (defun yas--advance-start-maybe (fom newstart)
3772 "Maybe advance FOM's start to NEWSTART if it needs it.
3773
3774 If it does, also call `yas--advance-end-maybe' on FOM."
3775 (when (and fom (< (yas--fom-start fom) newstart))
3776 (set-marker (yas--fom-start fom) newstart)
3777 (yas--advance-end-maybe fom newstart)))
3778
3779 (defun yas--advance-end-of-parents-maybe (field newend)
3780 "Like `yas--advance-end-maybe' but for parent fields.
3781
3782 Only works for fields and doesn't care about the start of the
3783 next FOM. Works its way up recursively for parents of parents."
3784 (when (and field
3785 (< (yas--field-end field) newend))
3786 (set-marker (yas--field-end field) newend)
3787 (yas--advance-end-of-parents-maybe (yas--field-parent-field field) newend)))
3788
3789 (defvar yas--dollar-regions nil
3790 "When expanding the snippet the \"parse-create\" functions add
3791 cons cells to this var.")
3792
3793 (defvar yas--backquote-markers-and-strings nil
3794 "List of (MARKER . STRING) marking where the values from
3795 backquoted Lisp expressions should be inserted at the end of
3796 expansion.")
3797
3798 (defun yas--snippet-parse-create (snippet)
3799 "Parse a recently inserted snippet template, creating all
3800 necessary fields, mirrors and exit points.
3801
3802 Meant to be called in a narrowed buffer, does various passes"
3803 (let ((parse-start (point)))
3804 ;; Reset the yas--dollar-regions
3805 ;;
3806 (setq yas--dollar-regions nil)
3807 ;; protect just the backquotes
3808 ;;
3809 (yas--protect-escapes nil '(?`))
3810 ;; replace all backquoted expressions
3811 ;;
3812 (goto-char parse-start)
3813 (yas--save-backquotes)
3814 ;; protect escaped characters
3815 ;;
3816 (yas--protect-escapes)
3817 ;; parse fields with {}
3818 ;;
3819 (goto-char parse-start)
3820 (yas--field-parse-create snippet)
3821 ;; parse simple mirrors and fields
3822 ;;
3823 (goto-char parse-start)
3824 (yas--simple-mirror-parse-create snippet)
3825 ;; parse mirror transforms
3826 ;;
3827 (goto-char parse-start)
3828 (yas--transform-mirror-parse-create snippet)
3829 ;; calculate adjacencies of fields and mirrors
3830 ;;
3831 (yas--calculate-adjacencies snippet)
3832 ;; Delete $-constructs
3833 ;;
3834 (save-restriction (widen) (yas--delete-regions yas--dollar-regions))
3835 ;; restore backquoted expression values
3836 ;;
3837 (yas--restore-backquotes)
3838 ;; restore escapes
3839 ;;
3840 (goto-char parse-start)
3841 (yas--restore-escapes)
3842 ;; update mirrors for the first time
3843 ;;
3844 (yas--update-mirrors snippet)
3845 ;; indent the best we can
3846 ;;
3847 (goto-char parse-start)
3848 (yas--indent snippet)))
3849
3850 (defun yas--indent-according-to-mode (snippet-markers)
3851 "Indent current line according to mode, preserving SNIPPET-MARKERS."
3852 ;;; Apropos indenting problems....
3853 ;;
3854 ;; `indent-according-to-mode' uses whatever `indent-line-function'
3855 ;; is available. Some implementations of these functions delete text
3856 ;; before they insert. If there happens to be a marker just after
3857 ;; the text being deleted, the insertion actually happens after the
3858 ;; marker, which misplaces it.
3859 ;;
3860 ;; This would also happen if we had used overlays with the
3861 ;; `front-advance' property set to nil.
3862 ;;
3863 ;; This is why I have these `trouble-markers', they are the ones at
3864 ;; they are the ones at the first non-whitespace char at the line
3865 ;; (i.e. at `yas--real-line-beginning'. After indentation takes place
3866 ;; we should be at the correct to restore them to. All other
3867 ;; non-trouble-markers have been *pushed* and don't need special
3868 ;; attention.
3869 ;;
3870 (goto-char (yas--real-line-beginning))
3871 (let ((trouble-markers (remove-if-not #'(lambda (marker)
3872 (= marker (point)))
3873 snippet-markers)))
3874 (save-restriction
3875 (widen)
3876 (condition-case _
3877 (indent-according-to-mode)
3878 (error (yas--message 3 "Warning: `yas--indent-according-to-mode' having problems running %s" indent-line-function)
3879 nil)))
3880 (mapc #'(lambda (marker)
3881 (set-marker marker (point)))
3882 trouble-markers)))
3883
3884 (defvar yas--indent-original-column nil)
3885 (defun yas--indent (snippet)
3886 (let ((snippet-markers (yas--collect-snippet-markers snippet)))
3887 ;; Look for those $>
3888 (save-excursion
3889 (while (re-search-forward "$>" nil t)
3890 (delete-region (match-beginning 0) (match-end 0))
3891 (when (not (eq yas-indent-line 'auto))
3892 (yas--indent-according-to-mode snippet-markers))))
3893 ;; Now do stuff for 'fixed and 'auto
3894 (save-excursion
3895 (cond ((eq yas-indent-line 'fixed)
3896 (while (and (zerop (forward-line))
3897 (zerop (current-column)))
3898 (indent-to-column yas--indent-original-column)))
3899 ((eq yas-indent-line 'auto)
3900 (let ((end (set-marker (make-marker) (point-max)))
3901 (indent-first-line-p yas-also-auto-indent-first-line))
3902 (while (and (zerop (if indent-first-line-p
3903 (prog1
3904 (forward-line 0)
3905 (setq indent-first-line-p nil))
3906 (forward-line 1)))
3907 (not (eobp))
3908 (<= (point) end))
3909 (yas--indent-according-to-mode snippet-markers))))
3910 (t
3911 nil)))))
3912
3913 (defun yas--collect-snippet-markers (snippet)
3914 "Make a list of all the markers used by SNIPPET."
3915 (let (markers)
3916 (dolist (field (yas--snippet-fields snippet))
3917 (push (yas--field-start field) markers)
3918 (push (yas--field-end field) markers)
3919 (dolist (mirror (yas--field-mirrors field))
3920 (push (yas--mirror-start mirror) markers)
3921 (push (yas--mirror-end mirror) markers)))
3922 (let ((snippet-exit (yas--snippet-exit snippet)))
3923 (when (and snippet-exit
3924 (marker-buffer (yas--exit-marker snippet-exit)))
3925 (push (yas--exit-marker snippet-exit) markers)))
3926 markers))
3927
3928 (defun yas--real-line-beginning ()
3929 (let ((c (char-after (line-beginning-position)))
3930 (n (line-beginning-position)))
3931 (while (or (eql c ?\ )
3932 (eql c ?\t))
3933 (incf n)
3934 (setq c (char-after n)))
3935 n))
3936
3937 (defun yas--escape-string (escaped)
3938 (concat "YASESCAPE" (format "%d" escaped) "PROTECTGUARD"))
3939
3940 (defun yas--protect-escapes (&optional text escaped)
3941 "Protect all escaped characters with their numeric ASCII value.
3942
3943 With optional string TEXT do it in string instead of buffer."
3944 (let ((changed-text text)
3945 (text-provided-p text))
3946 (mapc #'(lambda (escaped)
3947 (setq changed-text
3948 (yas--replace-all (concat "\\" (char-to-string escaped))
3949 (yas--escape-string escaped)
3950 (when text-provided-p changed-text))))
3951 (or escaped yas--escaped-characters))
3952 changed-text))
3953
3954 (defun yas--restore-escapes (&optional text escaped)
3955 "Restore all escaped characters from their numeric ASCII value.
3956
3957 With optional string TEXT do it in string instead of the buffer."
3958 (let ((changed-text text)
3959 (text-provided-p text))
3960 (mapc #'(lambda (escaped)
3961 (setq changed-text
3962 (yas--replace-all (yas--escape-string escaped)
3963 (char-to-string escaped)
3964 (when text-provided-p changed-text))))
3965 (or escaped yas--escaped-characters))
3966 changed-text))
3967
3968 (defun yas--save-backquotes ()
3969 "Save all the \"`(lisp-expression)`\"-style expressions
3970 with their evaluated value into `yas--backquote-markers-and-strings'."
3971 (while (re-search-forward yas--backquote-lisp-expression-regexp nil t)
3972 (let ((current-string (match-string-no-properties 1)) transformed)
3973 (delete-region (match-beginning 0) (match-end 0))
3974 (setq transformed (yas--eval-lisp (yas--read-lisp (yas--restore-escapes current-string '(?`)))))
3975 (goto-char (match-beginning 0))
3976 (when transformed
3977 (let ((marker (make-marker)))
3978 (insert "Y") ;; quite horrendous, I love it :)
3979 (set-marker marker (point))
3980 (insert "Y")
3981 (push (cons marker transformed) yas--backquote-markers-and-strings))))))
3982
3983 (defun yas--restore-backquotes ()
3984 "Replace markers in `yas--backquote-markers-and-strings' with their values."
3985 (while yas--backquote-markers-and-strings
3986 (let* ((marker-and-string (pop yas--backquote-markers-and-strings))
3987 (marker (car marker-and-string))
3988 (string (cdr marker-and-string)))
3989 (save-excursion
3990 (goto-char marker)
3991 (delete-char -1)
3992 (insert string)
3993 (delete-char 1)
3994 (set-marker marker nil)))))
3995
3996 (defun yas--scan-sexps (from count)
3997 (condition-case _
3998 (with-syntax-table (standard-syntax-table)
3999 (scan-sexps from count))
4000 (error
4001 nil)))
4002
4003 (defun yas--make-marker (pos)
4004 "Create a marker at POS with nil `marker-insertion-type'."
4005 (let ((marker (set-marker (make-marker) pos)))
4006 (set-marker-insertion-type marker nil)
4007 marker))
4008
4009 (defun yas--field-parse-create (snippet &optional parent-field)
4010 "Parse most field expressions in SNIPPET, except for the simple one \"$n\".
4011
4012 The following count as a field:
4013
4014 * \"${n: text}\", for a numbered field with default text, as long as N is not 0;
4015
4016 * \"${n: text$(expression)}, the same with a Lisp expression;
4017 this is caught with the curiously named `yas--multi-dollar-lisp-expression-regexp'
4018
4019 * the same as above but unnumbered, (no N:) and number is calculated automatically.
4020
4021 When multiple expressions are found, only the last one counts."
4022 ;;
4023 (save-excursion
4024 (while (re-search-forward yas--field-regexp nil t)
4025 (let* ((real-match-end-0 (yas--scan-sexps (1+ (match-beginning 0)) 1))
4026 (number (and (match-string-no-properties 1)
4027 (string-to-number (match-string-no-properties 1))))
4028 (brand-new-field (and real-match-end-0
4029 ;; break if on "$(" immediately
4030 ;; after the ":", this will be
4031 ;; caught as a mirror with
4032 ;; transform later.
4033 (not (save-match-data
4034 (eq (string-match "$[ \t\n]*("
4035 (match-string-no-properties 2)) 0)))
4036 ;; allow ${0: some exit text}
4037 ;; (not (and number (zerop number)))
4038 (yas--make-field number
4039 (yas--make-marker (match-beginning 2))
4040 (yas--make-marker (1- real-match-end-0))
4041 parent-field))))
4042 (when brand-new-field
4043 (goto-char real-match-end-0)
4044 (push (cons (1- real-match-end-0) real-match-end-0)
4045 yas--dollar-regions)
4046 (push (cons (match-beginning 0) (match-beginning 2))
4047 yas--dollar-regions)
4048 (push brand-new-field (yas--snippet-fields snippet))
4049 (save-excursion
4050 (save-restriction
4051 (narrow-to-region (yas--field-start brand-new-field) (yas--field-end brand-new-field))
4052 (goto-char (point-min))
4053 (yas--field-parse-create snippet brand-new-field)))))))
4054 ;; if we entered from a parent field, now search for the
4055 ;; `yas--multi-dollar-lisp-expression-regexp'. This is used for
4056 ;; primary field transformations
4057 ;;
4058 (when parent-field
4059 (save-excursion
4060 (while (re-search-forward yas--multi-dollar-lisp-expression-regexp nil t)
4061 (let* ((real-match-end-1 (yas--scan-sexps (match-beginning 1) 1)))
4062 ;; commit the primary field transformation if:
4063 ;;
4064 ;; 1. we don't find it in yas--dollar-regions (a subnested
4065 ;; field) might have already caught it.
4066 ;;
4067 ;; 2. we really make sure we have either two '$' or some
4068 ;; text and a '$' after the colon ':'. This is a FIXME: work
4069 ;; my regular expressions and end these ugly hacks.
4070 ;;
4071 (when (and real-match-end-1
4072 (not (member (cons (match-beginning 0)
4073 real-match-end-1)
4074 yas--dollar-regions))
4075 (not (eq ?:
4076 (char-before (1- (match-beginning 1))))))
4077 (let ((lisp-expression-string (buffer-substring-no-properties (match-beginning 1)
4078 real-match-end-1)))
4079 (setf (yas--field-transform parent-field)
4080 (yas--read-lisp (yas--restore-escapes lisp-expression-string))))
4081 (push (cons (match-beginning 0) real-match-end-1)
4082 yas--dollar-regions)))))))
4083
4084 (defun yas--transform-mirror-parse-create (snippet)
4085 "Parse the \"${n:$(lisp-expression)}\" mirror transformations in SNIPPET."
4086 (while (re-search-forward yas--transform-mirror-regexp nil t)
4087 (let* ((real-match-end-0 (yas--scan-sexps (1+ (match-beginning 0)) 1))
4088 (number (string-to-number (match-string-no-properties 1)))
4089 (field (and number
4090 (not (zerop number))
4091 (yas--snippet-find-field snippet number)))
4092 (brand-new-mirror
4093 (and real-match-end-0
4094 field
4095 (yas--make-mirror (yas--make-marker (match-beginning 0))
4096 (yas--make-marker (match-beginning 0))
4097 (yas--read-lisp
4098 (yas--restore-escapes
4099 (buffer-substring-no-properties (match-beginning 2)
4100 (1- real-match-end-0))))))))
4101 (when brand-new-mirror
4102 (push brand-new-mirror
4103 (yas--field-mirrors field))
4104 (yas--calculate-mirrors-in-fields snippet brand-new-mirror)
4105 (push (cons (match-beginning 0) real-match-end-0) yas--dollar-regions)))))
4106
4107 (defun yas--simple-mirror-parse-create (snippet)
4108 "Parse the simple \"$n\" fields/mirrors/exitmarkers in SNIPPET."
4109 (while (re-search-forward yas--simple-mirror-regexp nil t)
4110 (let ((number (string-to-number (match-string-no-properties 1))))
4111 (cond ((zerop number)
4112
4113 (setf (yas--snippet-exit snippet)
4114 (yas--make-exit (yas--make-marker (match-end 0))))
4115 (save-excursion
4116 (goto-char (match-beginning 0))
4117 (when yas-wrap-around-region
4118 (cond (yas-selected-text
4119 (insert yas-selected-text))
4120 ((and (eq yas-wrap-around-region 'cua)
4121 cua-mode
4122 (get-register ?0))
4123 (insert (prog1 (get-register ?0)
4124 (set-register ?0 nil))))))
4125 (push (cons (point) (yas--exit-marker (yas--snippet-exit snippet)))
4126 yas--dollar-regions)))
4127 (t
4128 (let ((field (yas--snippet-find-field snippet number)))
4129 (if field
4130 (let ((brand-new-mirror (yas--make-mirror
4131 (yas--make-marker (match-beginning 0))
4132 (yas--make-marker (match-beginning 0))
4133 nil)))
4134 (push brand-new-mirror
4135 (yas--field-mirrors field))
4136 (yas--calculate-mirrors-in-fields snippet brand-new-mirror))
4137 (push (yas--make-field number
4138 (yas--make-marker (match-beginning 0))
4139 (yas--make-marker (match-beginning 0))
4140 nil)
4141 (yas--snippet-fields snippet))))
4142 (push (cons (match-beginning 0) (match-end 0))
4143 yas--dollar-regions))))))
4144
4145 (defun yas--delete-regions (regions)
4146 "Sort disjuct REGIONS by start point, then delete from the back."
4147 (mapc #'(lambda (reg)
4148 (delete-region (car reg) (cdr reg)))
4149 (sort regions
4150 #'(lambda (r1 r2)
4151 (>= (car r1) (car r2))))))
4152
4153 (defun yas--calculate-mirror-depth (mirror &optional traversed)
4154 (let* ((parent (yas--mirror-parent-field mirror))
4155 (parents-mirrors (and parent
4156 (yas--field-mirrors parent))))
4157 (or (yas--mirror-depth mirror)
4158 (setf (yas--mirror-depth mirror)
4159 (cond ((memq mirror traversed)
4160 0)
4161 ((and parent parents-mirrors)
4162 (1+ (reduce #'max
4163 (mapcar #'(lambda (m)
4164 (yas--calculate-mirror-depth m
4165 (cons mirror
4166 traversed)))
4167 parents-mirrors))))
4168 (parent
4169 1)
4170 (t
4171 0))))))
4172
4173 (defun yas--update-mirrors (snippet)
4174 "Update all the mirrors of SNIPPET."
4175 (save-excursion
4176 (dolist (field-and-mirror (sort
4177 ;; make a list of ((F1 . M1) (F1 . M2) (F2 . M3) (F2 . M4) ...)
4178 ;; where F is the field that M is mirroring
4179 ;;
4180 (mapcan #'(lambda (field)
4181 (mapcar #'(lambda (mirror)
4182 (cons field mirror))
4183 (yas--field-mirrors field)))
4184 (yas--snippet-fields snippet))
4185 ;; then sort this list so that entries with mirrors with parent
4186 ;; fields appear before. This was important for fixing #290, and
4187 ;; luckily also handles the case where a mirror in a field causes
4188 ;; another mirror to need reupdating
4189 ;;
4190 #'(lambda (field-and-mirror1 field-and-mirror2)
4191 (> (yas--calculate-mirror-depth (cdr field-and-mirror1))
4192 (yas--calculate-mirror-depth (cdr field-and-mirror2))))))
4193 (let* ((field (car field-and-mirror))
4194 (mirror (cdr field-and-mirror))
4195 (parent-field (yas--mirror-parent-field mirror)))
4196 ;; before updating a mirror with a parent-field, maybe advance
4197 ;; its start (#290)
4198 ;;
4199 (when parent-field
4200 (yas--advance-start-maybe mirror (yas--fom-start parent-field)))
4201 ;; update this mirror
4202 ;;
4203 (yas--mirror-update-display mirror field)
4204 ;; `yas--place-overlays' is needed if the active field and
4205 ;; protected overlays have been changed because of insertions
4206 ;; in `yas--mirror-update-display'
4207 ;;
4208 (when (eq field (yas--snippet-active-field snippet))
4209 (yas--place-overlays snippet field))))))
4210
4211 (defun yas--mirror-update-display (mirror field)
4212 "Update MIRROR according to FIELD (and mirror transform)."
4213
4214 (let* ((mirror-parent-field (yas--mirror-parent-field mirror))
4215 (reflection (and (not (and mirror-parent-field
4216 (yas--field-modified-p mirror-parent-field)))
4217 (or (yas--apply-transform mirror field 'empty-on-nil)
4218 (yas--field-text-for-display field)))))
4219 (when (and reflection
4220 (not (string= reflection (buffer-substring-no-properties (yas--mirror-start mirror)
4221 (yas--mirror-end mirror)))))
4222 (goto-char (yas--mirror-start mirror))
4223 (yas--inhibit-overlay-hooks
4224 (insert reflection))
4225 (if (> (yas--mirror-end mirror) (point))
4226 (delete-region (point) (yas--mirror-end mirror))
4227 (set-marker (yas--mirror-end mirror) (point))
4228 (yas--advance-start-maybe (yas--mirror-next mirror) (point))
4229 ;; super-special advance
4230 (yas--advance-end-of-parents-maybe mirror-parent-field (point))))))
4231
4232 (defun yas--field-update-display (field)
4233 "Much like `yas--mirror-update-display', but for fields."
4234 (when (yas--field-transform field)
4235 (let ((transformed (and (not (eq (yas--field-number field) 0))
4236 (yas--apply-transform field field))))
4237 (when (and transformed
4238 (not (string= transformed (buffer-substring-no-properties (yas--field-start field)
4239 (yas--field-end field)))))
4240 (setf (yas--field-modified-p field) t)
4241 (goto-char (yas--field-start field))
4242 (yas--inhibit-overlay-hooks
4243 (insert transformed)
4244 (if (> (yas--field-end field) (point))
4245 (delete-region (point) (yas--field-end field))
4246 (set-marker (yas--field-end field) (point))
4247 (yas--advance-start-maybe (yas--field-next field) (point)))
4248 t)))))
4249
4250 \f
4251 ;;; Post-command hook:
4252 ;;
4253 (defun yas--post-command-handler ()
4254 "Handles various yasnippet conditions after each command."
4255 (cond (yas--protection-violation
4256 (goto-char yas--protection-violation)
4257 (setq yas--protection-violation nil))
4258 ((eq 'undo this-command)
4259 ;;
4260 ;; After undo revival the correct field is sometimes not
4261 ;; restored correctly, this condition handles that
4262 ;;
4263 (let* ((snippet (car (yas--snippets-at-point)))
4264 (target-field (and snippet
4265 (find-if-not #'(lambda (field)
4266 (yas--field-probably-deleted-p snippet field))
4267 (remove nil
4268 (cons (yas--snippet-active-field snippet)
4269 (yas--snippet-fields snippet)))))))
4270 (when target-field
4271 (yas--move-to-field snippet target-field))))
4272 ((not (yas--undo-in-progress))
4273 ;; When not in an undo, check if we must commit the snippet
4274 ;; (user exited it).
4275 (yas--check-commit-snippet))))
4276 \f
4277 ;;; Fancy docs:
4278 ;;
4279 ;; The docstrings for some functions are generated dynamically
4280 ;; depending on the context.
4281 ;;
4282 (put 'yas-expand 'function-documentation
4283 '(yas--expand-from-trigger-key-doc t))
4284 (defun yas--expand-from-trigger-key-doc (context)
4285 "A doc synthesizer for `yas--expand-from-trigger-key-doc'."
4286 (let* ((yas-fallback-behavior (and context yas-fallback-behavior))
4287 (fallback-description
4288 (cond ((eq yas-fallback-behavior 'call-other-command)
4289 (let* ((fallback (yas--keybinding-beyond-yasnippet)))
4290 (or (and fallback
4291 (format "call command `%s'."
4292 (pp-to-string fallback)))
4293 "do nothing (`yas-expand' doesn't shadow\nanything).")))
4294 ((eq yas-fallback-behavior 'return-nil)
4295 "do nothing.")
4296 (t "defer to `yas-fallback-behavior' (which see)."))))
4297 (concat "Expand a snippet before point. If no snippet
4298 expansion is possible, "
4299 fallback-description
4300 "\n\nOptional argument FIELD is for non-interactive use and is an
4301 object satisfying `yas--field-p' to restrict the expansion to.")))
4302
4303 (put 'yas-expand-from-keymap 'function-documentation
4304 '(yas--expand-from-keymap-doc t))
4305 (defun yas--expand-from-keymap-doc (context)
4306 "A doc synthesizer for `yas--expand-from-keymap-doc'."
4307 (add-hook 'temp-buffer-show-hook 'yas--snippet-description-finish-runonce)
4308 (concat "Expand/run snippets from keymaps, possibly falling back to original binding.\n"
4309 (when (and context (eq this-command 'describe-key))
4310 (let* ((vec (this-single-command-keys))
4311 (templates (mapcan #'(lambda (table)
4312 (yas--fetch table vec))
4313 (yas--get-snippet-tables)))
4314 (yas--direct-keymaps nil)
4315 (fallback (key-binding vec)))
4316 (concat "In this case, "
4317 (when templates
4318 (concat "these snippets are bound to this key:\n"
4319 (yas--template-pretty-list templates)
4320 "\n\nIf none of these expands, "))
4321 (or (and fallback
4322 (format "fallback `%s' will be called." (pp-to-string fallback)))
4323 "no fallback keybinding is called."))))))
4324
4325 (defun yas--template-pretty-list (templates)
4326 (let ((acc)
4327 (yas-buffer-local-condition 'always))
4328 (dolist (plate templates)
4329 (setq acc (concat acc "\n*) "
4330 (propertize (concat "\\\\snippet `" (car plate) "'")
4331 'yasnippet (cdr plate)))))
4332 acc))
4333
4334 (define-button-type 'help-snippet-def
4335 :supertype 'help-xref
4336 'help-function (lambda (template) (yas--visit-snippet-file-1 template))
4337 'help-echo (purecopy "mouse-2, RET: find snippets's definition"))
4338
4339 (defun yas--snippet-description-finish-runonce ()
4340 "Final adjustments for the help buffer when snippets are concerned."
4341 (yas--create-snippet-xrefs)
4342 (remove-hook 'temp-buffer-show-hook 'yas--snippet-description-finish-runonce))
4343
4344 (defun yas--create-snippet-xrefs ()
4345 (save-excursion
4346 (goto-char (point-min))
4347 (while (search-forward-regexp "\\\\\\\\snippet[ \s\t]+`\\([^']+\\)'" nil t)
4348 (let ((template (get-text-property (match-beginning 1)
4349 'yasnippet)))
4350 (when template
4351 (help-xref-button 1 'help-snippet-def template)
4352 (kill-region (match-end 1) (match-end 0))
4353 (kill-region (match-beginning 0) (match-beginning 1)))))))
4354 \f
4355 ;;; Utils
4356
4357 (defvar yas-verbosity 4
4358 "Log level for `yas--message' 4 means trace most anything, 0 means nothing.")
4359
4360 (defun yas--message (level message &rest args)
4361 "When LEVEL is above `yas-verbosity-level', log MESSAGE and ARGS."
4362 (when (> yas-verbosity level)
4363 (message "%s" (apply #'yas--format message args))))
4364
4365 (defun yas--format (format-control &rest format-args)
4366 (apply #'format (concat "[yas] " format-control) format-args))
4367
4368 \f
4369 ;;; Some hacks:
4370 ;;
4371 ;; The functions
4372 ;;
4373 ;; `locate-dominating-file'
4374 ;; `region-active-p'
4375 ;;
4376 ;; added for compatibility in emacsen < 23
4377 (unless (>= emacs-major-version 23)
4378 (unless (fboundp 'region-active-p)
4379 (defun region-active-p () (and transient-mark-mode mark-active)))
4380
4381 (unless (fboundp 'locate-dominating-file)
4382 (defvar locate-dominating-stop-dir-regexp
4383 "\\`\\(?:[\\/][\\/][^\\/]+[\\/]\\|/\\(?:net\\|afs\\|\\.\\.\\.\\)/\\)\\'"
4384 "Regexp of directory names which stop the search in `locate-dominating-file'.
4385 Any directory whose name matches this regexp will be treated like
4386 a kind of root directory by `locate-dominating-file' which will stop its search
4387 when it bumps into it.
4388 The default regexp prevents fruitless and time-consuming attempts to find
4389 special files in directories in which filenames are interpreted as hostnames,
4390 or mount points potentially requiring authentication as a different user.")
4391
4392 (defun locate-dominating-file (file name)
4393 "Look up the directory hierarchy from FILE for a file named NAME.
4394 Stop at the first parent directory containing a file NAME,
4395 and return the directory. Return nil if not found."
4396 ;; We used to use the above locate-dominating-files code, but the
4397 ;; directory-files call is very costly, so we're much better off doing
4398 ;; multiple calls using the code in here.
4399 ;;
4400 ;; Represent /home/luser/foo as ~/foo so that we don't try to look for
4401 ;; `name' in /home or in /.
4402 (setq file (abbreviate-file-name file))
4403 (let ((root nil)
4404 try)
4405 (while (not (or root
4406 (null file)
4407 ;; FIXME: Disabled this heuristic because it is sometimes
4408 ;; inappropriate.
4409 ;; As a heuristic, we stop looking up the hierarchy of
4410 ;; directories as soon as we find a directory belonging
4411 ;; to another user. This should save us from looking in
4412 ;; things like /net and /afs. This assumes that all the
4413 ;; files inside a project belong to the same user.
4414 ;; (let ((prev-user user))
4415 ;; (setq user (nth 2 (file-attributes file)))
4416 ;; (and prev-user (not (equal user prev-user))))
4417 (string-match locate-dominating-stop-dir-regexp file)))
4418 (setq try (file-exists-p (expand-file-name name file)))
4419 (cond (try (setq root file))
4420 ((equal file (setq file (file-name-directory
4421 (directory-file-name file))))
4422 (setq file nil))))
4423 root))))
4424
4425 \f
4426 ;;; Backward compatibility to yasnippet <= 0.7
4427
4428 (defvar yas--backported-syms '(;; `defcustom's
4429 ;;
4430 yas-snippet-dirs
4431 yas-prompt-functions
4432 yas-indent-line
4433 yas-also-auto-indent-first-line
4434 yas-snippet-revival
4435 yas-triggers-in-field
4436 yas-fallback-behavior
4437 yas-choose-keys-first
4438 yas-choose-tables-first
4439 yas-use-menu
4440 yas-trigger-symbol
4441 yas-wrap-around-region
4442 yas-good-grace
4443 yas-visit-from-menu
4444 yas-expand-only-for-last-commands
4445 yas-field-highlight-face
4446
4447 ;; these vars can be customized as well
4448 ;;
4449 yas-keymap
4450 yas-verbosity
4451 yas-extra-modes
4452 yas-key-syntaxes
4453 yas-after-exit-snippet-hook
4454 yas-before-expand-snippet-hook
4455 yas-buffer-local-condition
4456 yas-dont-activate
4457
4458 ;; prompting functions
4459 ;;
4460 yas-x-prompt
4461 yas-ido-prompt
4462 yas-no-prompt
4463 yas-completing-prompt
4464 yas-dropdown-prompt
4465
4466 ;; interactive functions
4467 ;;
4468 yas-expand
4469 yas-minor-mode
4470 yas-global-mode
4471 yas-direct-keymaps-reload
4472 yas-minor-mode-on
4473 yas-load-directory
4474 yas-reload-all
4475 yas-compile-directory
4476 yas-recompile-all
4477 yas-about
4478 yas-expand-from-trigger-key
4479 yas-expand-from-keymap
4480 yas-insert-snippet
4481 yas-visit-snippet-file
4482 yas-new-snippet
4483 yas-load-snippet-buffer
4484 yas-tryout-snippet
4485 yas-describe-tables
4486 yas-next-field-or-maybe-expand
4487 yas-next-field
4488 yas-prev-field
4489 yas-abort-snippet
4490 yas-exit-snippet
4491 yas-exit-all-snippets
4492 yas-skip-and-clear-or-delete-char
4493
4494 ;; symbols that I "exported" for use
4495 ;; in snippets and hookage
4496 ;;
4497 yas-expand-snippet
4498 yas-define-snippets
4499 yas-define-menu
4500 yas-snippet-beg
4501 yas-snippet-end
4502 yas-modified-p
4503 yas-moving-away-p
4504 yas-substr
4505 yas-choose-value
4506 yas-key-to-value
4507 yas-throw
4508 yas-verify-value
4509 yas-field-value
4510 yas-text
4511 yas-selected-text
4512 yas-default-from-field
4513 yas-inside-string
4514 yas-unimplemented
4515 yas-define-condition-cache
4516 yas-hippie-try-expand
4517
4518 ;; debug definitions
4519 ;; yas-debug-snippet-vars
4520 ;; yas-exterminate-package
4521 ;; yas-debug-test
4522
4523 ;; testing definitions
4524 ;; yas-should-expand
4525 ;; yas-should-not-expand
4526 ;; yas-mock-insert
4527 ;; yas-make-file-or-dirs
4528 ;; yas-variables
4529 ;; yas-saving-variables
4530 ;; yas-call-with-snippet-dirs
4531 ;; yas-with-snippet-dirs
4532 )
4533 "Backported yasnippet symbols.
4534
4535 They are mapped to \"yas/*\" variants.")
4536
4537 (dolist (sym yas--backported-syms)
4538 (let ((backported (intern (replace-regexp-in-string "^yas-" "yas/" (symbol-name sym)))))
4539 (when (boundp sym)
4540 (make-obsolete-variable backported sym "yasnippet 0.8")
4541 (defvaralias backported sym))
4542 (when (fboundp sym)
4543 (make-obsolete backported sym "yasnippet 0.8")
4544 (defalias backported sym))))
4545
4546 (defvar yas--exported-syms
4547 (let (exported)
4548 (mapatoms (lambda (atom)
4549 (if (and (or (and (boundp atom)
4550 (not (get atom 'byte-obsolete-variable)))
4551 (and (fboundp atom)
4552 (not (get atom 'byte-obsolete-info))))
4553 (string-match-p "^yas-[^-]" (symbol-name atom)))
4554 (push atom exported))))
4555 exported)
4556 "Exported yasnippet symbols.
4557
4558 i.e. the ones with \"yas-\" single dash prefix. I will try to
4559 keep them in future yasnippet versions and other elisp libraries
4560 can more or less safely rely upon them.")
4561
4562 \f
4563 (provide 'yasnippet)
4564
4565 ;;; yasnippet.el ends here
4566 ;; Local Variables:
4567 ;; coding: utf-8
4568 ;; byte-compile-warnings: (not cl-functions)
4569 ;; End: