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