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