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