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