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