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