]> code.delx.au - gnu-emacs-elpa/blob - doc/snippet-development.org
Document uuid directive
[gnu-emacs-elpa] / doc / snippet-development.org
1 #+SETUPFILE: org-setup.inc
2
3 #+TITLE: Writing snippets
4
5 * Snippet development
6
7 ** Quickly finding snippets
8
9 There are some ways you can quickly find a snippet file:
10
11 - =M-x yas-new-snippet=
12
13 Prompts you for a snippet name, then tries to guess a suitable
14 directory to store it, prompting you for creation if it does not
15 exist. Finally, places you in a new buffer set to =snippet-mode= so
16 you can write your snippet.
17
18 - =M-x yas-find-snippets=
19
20 Lets you find the snippet file in the directory the snippet was
21 loaded from (if it exists) like =find-file-other-window=. The
22 directory searching logic is similar to =M-x yas-new-snippet=.
23
24 - =M-x yas-visit-snippet-file=
25
26 Prompts you for possible snippet expansions like
27 [[sym:yas-insert-snippet][=yas-insert-snippet=]], but instead of expanding it, takes you directly
28 to the snippet definition's file, if it exists.
29
30 Once you find this file it will be set to =snippet-mode= (see ahead) and
31 you can start editing your snippet.
32
33 ** Using the =snippet-mode= major mode
34
35 There is a major mode =snippet-mode= to edit snippets. You can set the
36 buffer to this mode with =M-x snippet-mode=. It provides reasonably
37 useful syntax highlighting.
38
39 Two commands are defined in this mode:
40
41 - =M-x yas-load-snippet-buffer=
42
43 When editing a snippet, this loads the snippet into the correct
44 mode and menu. Bound to =C-c C-c= by default while in
45 =snippet-mode=.
46
47 - =M-x yas-tryout-snippet=
48
49 When editing a snippet, this opens a new empty buffer, sets it to
50 the appropriate major mode and inserts the snippet there, so you
51 can see what it looks like. This is bound to =C-c C-t= while in
52 =snippet-mode=.
53
54 There are also /snippets for writing snippets/: =vars=, =$f= and =$m=
55 :-).
56
57 * File content
58
59 A file defining a snippet generally contains the template to be
60 expanded.
61
62 Optionally, if the file contains a line of =# --=, the lines above it
63 count as comments, some of which can be /directives/ (or meta data).
64 Snippet directives look like =# property: value= and tweak certain
65 snippets properties described below. If no =# --= is found, the whole
66 file is considered the snippet template.
67
68 Here's a typical example:
69
70 #+BEGIN_SRC snippet
71 # contributor: pluskid <pluskid@gmail.com>
72 # name: __...__
73 # --
74 __${init}__
75 #+END_SRC
76
77 Here's a list of currently supported directives:
78
79 ** =# key:= snippet abbrev
80
81 This is the probably the most important directive, it's the
82 abbreviation you type to expand a snippet just before hitting the key
83 that runs [[sym:yas-expand][=yas-expand=]]. If you don't specify this
84 the snippet will not be expandable through the trigger mechanism.
85
86 ** =# name:= snippet name
87
88 This is a one-line description of the snippet. It will be displayed in
89 the menu. It's a good idea to select a descriptive name for a snippet --
90 especially distinguishable among similar snippets.
91
92 If you omit this name it will default to the file name the snippet was
93 loaded from.
94
95 ** =# condition:= snippet condition
96
97 This is a piece of Emacs-lisp code. If a snippet has a condition, then
98 it will only be expanded when the condition code evaluate to some
99 non-nil value.
100
101 See also [[sym:yas-buffer-local-condition][=yas-buffer-local-condition=]] in
102 [[./snippet-expansion.org][Expanding snippets]]
103
104 ** =# group:= snippet menu grouping
105
106 When expanding/visiting snippets from the menu-bar menu, snippets for a
107 given mode can be grouped into sub-menus . This is useful if one has too
108 many snippets for a mode which will make the menu too long.
109
110 The =# group:= property only affect menu construction (See
111 [[./snippet-menu.org][the YASnippet menu]]) and the same effect can be
112 achieved by grouping snippets into sub-directories and using the
113 =.yas-make-groups= special file (for this see
114 [[./snippet-organization.org][Organizing Snippets]]
115
116 Refer to the bundled snippets for =ruby-mode= for examples on the
117 =# group:= directive. Group can also be nested, e.g.
118 =control structure.loops= tells that the snippet is under the =loops=
119 group which is under the =control structure= group.
120
121 ** =# expand-env:= expand environment
122
123 This is another piece of Emacs-lisp code in the form of a =let= /varlist
124 form/, i.e. a list of lists assigning values to variables. It can be
125 used to override variable values while the snippet is being expanded.
126
127 Interesting variables to override are [[sym:yas-wrap-around-region][=yas-wrap-around-region=]] and
128 [[sym:yas-indent-line][=yas-indent-line=]] (see [[./snippet-expansion.org][Expanding Snippets]]).
129
130 As an example, you might normally have [[sym:yas-indent-line][=yas-indent-line=]] set to '=auto=
131 and [[sym:yas-wrap-around-region][=yas-wrap-around-region=]] set to =t=, but for this particularly
132 brilliant piece of ASCII art these values would mess up your hard work.
133 You can then use:
134
135 #+BEGIN_SRC snippet
136 # name: ASCII home
137 # expand-env: ((yas-indent-line 'fixed) (yas-wrap-around-region 'nil))
138 # --
139 welcome to my
140 X humble
141 / \ home,
142 / \ $0
143 / \
144 /-------\
145 | |
146 | +-+ |
147 | | | |
148 +--+-+--+
149 #+END_SRC
150
151 ** =# binding:= direct keybinding
152
153 You can use this directive to expand a snippet directly from a normal
154 Emacs keybinding. The keybinding will be registered in the Emacs keymap
155 named after the major mode the snippet is active for.
156
157 Additionally a variable [[sym:yas-prefix][=yas-prefix=]] is set to to the prefix argument
158 you normally use for a command. This allows for small variations on the
159 same snippet, for example in this "html-mode" snippet.
160
161 #+BEGIN_SRC snippet
162 # name: <p>...</p>
163 # binding: C-c C-c C-m
164 # --
165 <p>`(when yas-prefix "\n")`$0`(when yas-prefix "\n")`</p>
166 #+END_SRC
167
168 This binding will be recorded in the keymap =html-mode-map=. To expand a
169 paragraph tag newlines, just press =C-u C-c C-c C-m=. Omitting the =C-u=
170 will expand the paragraph tag without newlines.
171
172 ** =# uuid:= unique identifier
173
174 This provides to a way to identify a snippet, independent of its name.
175 Loading a second snippet file with the same uuid would replace the
176 previous snippet.
177
178 ** =# contributor:= snippet author
179
180 This is optional and has no effect whatsoever on snippet functionality,
181 but it looks nice.
182
183 * Template syntax
184
185 The syntax of the snippet template is simple but powerful, very similar
186 to TextMate's.
187
188 ** Plain Text
189
190 Arbitrary text can be included as the content of a template. They are
191 usually interpreted as plain text, except =$= and =`=. You need to
192 use =\= to escape them: =\$= and =\`=. The =\= itself may also needed to be
193 escaped as =\\= sometimes.
194
195 ** Embedded Emacs-lisp code
196
197 Emacs-Lisp code can be embedded inside the template, written inside
198 back-quotes (=`=). The lisp forms are evaluated when the snippet is
199 being expanded. The evaluation is done in the same buffer as the
200 snippet being expanded.
201
202 Here's an example for c-mode` to calculate the header file guard
203 dynamically:
204
205 #+BEGIN_SRC snippet
206 #ifndef ${1:_`(upcase (file-name-nondirectory (file-name-sans-extension (buffer-file-name))))`_H_}
207 #define $1
208
209 $0
210
211 #endif /* $1 */
212 #+END_SRC
213
214 From version 0.6, snippets expansions are run with some special
215 Emacs-lisp variables bound. One of this is [[sym:yas-selected-text][=yas-selected-text=]]. You can
216 therefore define a snippet like:
217
218 #+BEGIN_SRC snippet
219 for ($1;$2;$3) {
220 `yas-selected-text`$0
221 }
222 #+END_SRC
223
224 to "wrap" the selected region inside your recently inserted snippet.
225 Alternatively, you can also customize the variable
226 [[sym:yas-wrap-around-region][=yas-wrap-around-region=]] to =t= which will do this automatically.
227
228 ** Tab stop fields
229
230 Tab stops are fields that you can navigate back and forth by =TAB= and
231 =S-TAB=. They are written by =$= followed with a number. =$0= has the
232 special meaning of the /exit point/ of a snippet. That is the last place
233 to go when you've traveled all the fields. Here's a typical example:
234
235 #+BEGIN_SRC snippet
236 <div$1>
237 $0
238 </div>
239 #+END_SRC
240 ** Placeholder fields
241
242 Tab stops can have default values -- a.k.a placeholders. The syntax is
243 like this:
244
245 #+BEGIN_SRC snippet
246 ${N:default value}
247 #+END_SRC
248
249 They acts as the default value for a tab stop. But when you firstly
250 type at a tab stop, the default value will be replaced by your typing.
251 The number can be omitted if you don't want to create [[mirrors]] or
252 [[transformations]] for this field.
253
254 ** <<Mirrors>>
255
256 We refer the tab stops with placeholders as a /field/. A field can have
257 mirrors. Its mirrors will get updated when you change the text of a
258 field. Here's an example:
259
260 #+BEGIN_SRC snippet
261 \begin{${1:enumerate}}
262 $0
263 \end{$1}
264 #+END_SRC
265
266 When you type "document" at =${1:enumerate}=, the word "document" will
267 also be inserted at =\end{$1}=. The best explanation is to see the
268 screencast([[http://www.youtube.com/watch?v=vOj7btx3ATg][YouTube]] or [[http://yasnippet.googlecode.com/files/yasnippet.avi][avi video]]).
269
270 The tab stops with the same number to the field act as its mirrors. If
271 none of the tab stops has an initial value, the first one is selected as
272 the field and others mirrors.
273
274 ** Mirrors with <<transformations>>
275
276 If the value of an =${n:=-construct starts with and contains =$(=, then
277 it is interpreted as a mirror for field =n= with a transformation. The
278 mirror's text content is calculated according to this transformation,
279 which is Emacs-lisp code that gets evaluated in an environment where the
280 variable =text= (or [[sym:yas-text][=yas-text=]]) is bound to the text content (string)
281 contained in the field =n=.Here's an example for Objective-C:
282
283 #+BEGIN_SRC snippet
284 - (${1:id})${2:foo}
285 {
286 return $2;
287 }
288
289 - (void)set${2:$(capitalize text)}:($1)aValue
290 {
291 [$2 autorelease];
292 $2 = [aValue retain];
293 }
294 $0
295 #+END_SRC
296
297 Look at =${2:$(capitalize text)}=, it is a mirror with transformation
298 instead of a field. The actual field is at the first line: =${2:foo}=.
299 When you type text in =${2:foo}=, the transformation will be evaluated
300 and the result will be placed there as the transformed text. So in this
301 example, if you type "baz" in the field, the transformed text will be
302 "Baz". This example is also available in the screencast.
303
304 Another example is for =rst-mode=. In reStructuredText, the document
305 title can be some text surrounded by "===" below and above. The "==="
306 should be at least as long as the text. So
307
308 #+BEGIN_SRC rst
309 =====
310 Title
311 =====
312 #+END_SRC
313
314 is a valid title but
315
316 #+BEGIN_SRC rst
317 ===
318 Title
319 ===
320 #+END_SRC
321
322 is not. Here's an snippet for rst title:
323
324 #+BEGIN_SRC snippet
325 ${1:$(make-string (string-width text) ?\=)}
326 ${1:Title}
327 ${1:$(make-string (string-width text) ?\=)}
328
329 $0
330 #+END_SRC
331
332 ** Fields with transformations
333
334 From version 0.6 on, you can also have lisp transformation inside
335 fields. These work mostly mirror transformations but are evaluated when
336 you first enter the field, after each change you make to the field and
337 also just before you exit the field.
338
339 The syntax is also a tiny bit different, so that the parser can
340 distinguish between fields and mirrors. In the following example
341
342 : #define "${1:mydefine$(upcase yas-text)}"
343
344 =mydefine= gets automatically upcased to =MYDEFINE= once you enter the
345 field. As you type text, it gets filtered through the transformation
346 every time.
347
348 Note that to tell this kind of expression from a mirror with a
349 transformation, YASnippet needs extra text between the =:= and the
350 transformation's =$=. If you don't want this extra-text, you can use two
351 =$='s instead.
352
353 : #define "${1:$$(upcase yas-text)}"
354
355 Please note that as soon as a transformation takes place, it changes the
356 value of the field and sets it its internal modification state to
357 =true=. As a consequence, the auto-deletion behaviour of normal fields
358 does not take place. This is by design.
359
360 ** Choosing fields value from a list and other tricks
361
362 As mentioned, the field transformation is invoked just after you enter
363 the field, and with some useful variables bound, notably
364 [[sym:yas-modified-p][=yas-modified-p=]] and [[sym:yas-moving-away-p][=yas-moving-away-p=]]. Because of this feature you
365 can place a transformation in the primary field that lets you select
366 default values for it.
367
368 The [[sym:yas-choose-value][=yas-choose-value=]] does this work for you. For example:
369
370 #+BEGIN_SRC snippet
371 <div align="${2:$$(yas-choose-value '("right" "center" "left"))}">
372 $0
373 </div>
374 #+END_SRC
375
376 See the definition of [[sym:yas-choose-value][=yas-choose-value=]] to see how it was written using
377 the two variables.
378
379 Here's another use, for LaTeX-mode, which calls reftex-label just as you
380 enter snippet field 2. This one makes use of [[sym:yas-modified-p][=yas-modified-p=]] directly.
381
382 #+BEGIN_SRC snippet
383 \section{${1:"Titel der Tour"}}%
384 \index{$1}%
385 \label{{2:"waiting for reftex-label call..."$(unless yas-modified-p (reftex-label nil 'dont-
386 insert))}}%
387 #+END_SRC
388
389 The function [[sym:yas-verify-value][=yas-verify-value=]] has another neat trick, and makes use
390 of [[sym:yas-moving-away-p][=yas-moving-away-p=]]. Try it and see! Also, check out this [[http://groups.google.com/group/smart-snippet/browse_thread/thread/282a90a118e1b662][thread]]
391
392 ** Nested placeholder fields
393
394 From version 0.6 on, you can also have nested placeholders of the type:
395
396 #+BEGIN_SRC snippet
397 <div${1: id="${2:some_id}"}>$0</div>
398 #+END_SRC
399
400 This allows you to choose if you want to give this =div= an =id=
401 attribute. If you tab forward after expanding it will let you change
402 "some\_id" to whatever you like. Alternatively, you can just press =C-d=
403 (which executes [[sym:yas-skip-and-clear-or-delete-char][=yas-skip-and-clear-or-delete-char=]]) and go straight to
404 the exit marker.
405
406 By the way, =C-d= will only clear the field if you cursor is at the
407 beginning of the field /and/ it hasn't been changed yet. Otherwise, it
408 performs the normal Emacs =delete-char= command.