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