]> code.delx.au - gnu-emacs-elpa/blob - doc/snippet-expansion.org
replace obsolete refs
[gnu-emacs-elpa] / doc / snippet-expansion.org
1 #+SETUPFILE: org-setup.inc
2 #+OPTIONS: H:4
3
4 * Expanding snippets
5
6 This section describes how YASnippet chooses snippets for expansion at point.
7
8 Maybe, you'll want some snippets to be expanded in a particular
9 mode, or only under certain conditions, or be prompted using
10
11 ** Triggering expansion
12
13 You can use YASnippet to expand snippets in different ways:
14
15 - When [[sym:yas-minor-mode][=yas-minor-mode=]] is active:
16 - Type the snippet's *trigger key* then calling [[sym:yas-expand][=yas-expand=]]
17 (bound to =TAB= by default).
18
19 - Use the snippet's *keybinding*.
20
21 - By expanding directly from the "YASnippet" menu in the menu-bar
22
23 - Using hippie-expand
24
25 - Call [[sym:yas-insert-snippet][=yas-insert-snippet=]] (use =M-x yas-insert-snippet== or its
26 keybinding =C-c & C-s=).
27
28 - Use m2m's excellent auto-complete
29 TODO: example for this
30
31 - Expanding from emacs-lisp code
32
33 *** Trigger key
34
35 [[sym:yas-expand][=yas-expand=]] tries to expand a /snippet abbrev/ (also known as
36 /snippet key/) before point.
37
38 When [[sym:yas-minor-mode][=yas-minor-mode=]] is enabled, it binds [[sym:yas-expand][=yas-expand=]] to =TAB= and
39 =<tab>= by default, however, you can freely set it to some other key:
40
41 #+begin_src emacs-lisp :exports code
42 (define-key yas-minor-mode-map (kbd "<tab>") nil)
43 (define-key yas-minor-mode-map (kbd "TAB") nil)
44 (define-key yas-minor-mode-map (kbd "<the new key>") 'yas-expand)
45 #+end_src
46
47 To enable the YASnippet minor mode in all buffers globally use the
48 command [[sym:yas-global-mode][=yas-global-mode=]]. This will enable a modeline indicator,
49 =yas=:
50
51 [[./images/minor-mode-indicator.png]]
52
53 When you use [[sym:yas-global-mode][=yas-global-mode=]] you can also selectively disable
54 YASnippet in some buffers by setting the buffer-local variable
55 [[sym:yas-dont-active][=yas-dont-active=]] in the buffer's mode hook.
56
57 **** Fallback bahaviour
58
59 [[sym:yas-fallback-behaviour][=yas-fallback-behaviour=]] is a customization variable bound to
60 '=call-other-command= by default. If [[sym:yas-expand][=yas-expand=]] failed to find any
61 suitable snippet to expand, it will disable the minor mode temporarily
62 and find if there's any other command bound to the same key.
63
64 If found, the command will be called. Usually this works very well
65 --when there's a snippet, expand it, otherwise, call whatever command
66 originally bind to the trigger key.
67
68 However, you can change this behavior by customizing the
69 [[sym:yas-fallback-behavior][=yas-fallback-behavior=]] variable. If you set this variable to
70 '=return-nil=, it will return =nil= instead of trying to call the
71 /original/ command when no snippet is found.
72
73 *** Insert at point
74
75 The command =M-x yas-insert-snippet= lets you insert snippets at point
76 /for you current major mode/. It prompts you for the snippet key first,
77 and then for a snippet template if more than one template exists for the
78 same key.
79
80 The list presented contains the snippets that can be inserted at point,
81 according to the condition system. If you want to see all applicable
82 snippets for the major mode, prefix this command with =C-u=.
83
84 The prompting methods used are again controlled by
85 [[sym:yas-prompt-functions][=yas-prompt-functions=]].
86
87 *** Snippet keybinding
88
89 See the section of the =# binding:= directive in
90 [[./snippet-development.org][Writing Snippets]].
91
92 *** Expanding from the menu
93
94 See [[./snippet-menu.org][the YASnippet Menu]].
95
96 *** Expanding with =hippie-expand=
97
98 To integrate with =hippie-expand=, just put [[sym:yas-hippie-try-expand][=yas-hippie-try-expand=]] in
99 =hippie-expand-try-functions-list=. This probably makes more sense when
100 placed at the top of the list, but it can be put anywhere you prefer.
101
102 *** Expanding from emacs-lisp code
103
104 Sometimes you might want to expand a snippet directly from you own elisp
105 code. You should call [[sym:yas-expand-snippet][=yas-expand-snippet=]] instead of [[sym:yas-expand][=yas-expand=]] in
106 this case.
107
108 As with expanding from the menubar, the condition system and multiple
109 candidates doesn't affect expansion. In fact, expanding from the
110 YASnippet menu has the same effect of evaluating the follow code:
111
112 See the internal documentation on [[sym:yas-expand-snippet][=yas-expand-snippet=]] for more
113 information.
114
115 ** Controlling expansion
116
117 *** Eligible snippets
118
119 YASnippet does quite a bit of filtering to find out which snippets are
120 eligible for expanding at the current cursor position.
121
122 In particular, the following things matter:
123
124 - Currently loaded snippets tables
125
126 These are loaded from a directory hierarchy in your file system. See
127 [[./snippet-organization.org][Organizing Snippets]]. They are named
128 after major modes like =html-mode=, =ruby-mode=, etc...
129
130 - Major mode of the current buffer
131
132 If the currrent major mode matches one of the loaded snippet tables,
133 then all that table's snippets are considered for expansion. Use
134 =M-x describe-variable RET major-mode RET= to find out which major
135 mode you are in currently.
136
137 - Parent tables
138
139 Snippet tables defined as the parent of some other eligible table are
140 also considered. This works recursively, i.e. parents of parents of
141 eligible tables are also considered.
142
143 - Buffer-local list of extra modes
144
145 Use [[#yas-activate-extra-mode][=yas-activate-extra-mode=]] to consider snippet tables whose name
146 does not correspond to a major mode. Typically, you call this from
147 a minor mode hook.
148
149 - Buffer-local [[sym:yas-buffer-local-condition][=yas-buffer-local-condition=]] variable
150
151 This variable provides finer grained control over what snippets can
152 be expanded in the current buffer. The default value won't let you
153 expand snippets inside comments or string literals for example. See
154 The condition system\_ for more info.
155
156 *** The condition system
157
158 Consider this scenario: you are an old Emacs hacker. You like the
159 abbrev-way and bind [[sym:yas-expand][=yas-expand=]] to =SPC=. However, you don't want
160 =if= to be expanded as a snippet when you are typing in a comment
161 block or a string (e.g. in =python-mode=).
162
163 If you use the =# condition := directive (see
164 [[./snippet-development.org][Writing Snippets]]) you could just specify
165 the condition for =if= to be =(not (python-in-string/comment))=. But how
166 about =while=, =for=, etc. ? Writing the same condition for all the
167 snippets is just boring. So has a buffer local variable
168 [[sym:yas-buffer-local-condition][=yas-buffer-local-condition=]]. You can set this variable to
169 =(not (python-in-string/comment))= in =python-mode-hook=.
170
171 Then, what if you really want some particular snippet to expand even
172 inside a comment? This is also possible! But let's stop telling the
173 story and look at the rules:
174
175 - If [[sym:yas-buffer-local-condition][=yas-buffer-local-condition=]] evaluate to nil, no snippets will be
176 considered for expansion.
177
178 - If it evaluates to the a /cons cell/ where the =car= is the symbol
179 =require-snippet-condition= and the =cdr= is a symbol (let's call it
180 =requirement=), then:
181
182 - Snippets having no =# condition:= directive won't be considered;
183
184 - Snippets with conditions that evaluate to nil (or produce an
185 error) won't be considered;
186
187 - If the snippet has a condition that evaluates to non-nil (let's
188 call it =result=):
189
190 - If =requirement= is =t=, the snippet is ready to be expanded;
191
192 - If =requirement= is =eq= to =result=, the snippet is ready to
193 be expanded;
194
195 - Otherwise the snippet won't be considered.
196
197 - If it evaluates to the symbol =always=, all snippets are considered
198 for expansion, regardless of any conditions.
199
200 - If it evaluate to =t= or some other non-nil value:
201
202 - If the snippet has no condition, or has a condition that evaluate
203 to non-nil, it is ready to be expanded.
204
205 - Otherwise, it won't be considered.
206
207 In the mentioned scenario, set [[sym:yas-buffer-local-condition][=yas-buffer-local-condition=]] like this
208
209 ... and specify the condition for a snippet that you're going to expand
210 in comment to be evaluated to the symbol =force-in-comment=. Then it can
211 be expanded as you expected, while other snippets like =if= still can't
212 expanded in comment.
213
214 *** Multiples snippet with the same key
215
216 The rules outlined [[Eligible%20snippets][above]] can return more than
217 one snippet to be expanded at point.
218
219 When there are multiple candidates, YASnippet will let you select one.
220 The UI for selecting multiple candidate can be customized through
221 [[sym:yas-prompt-functions][=yas-prompt-functions=]] , which defines your preferred methods of being
222 prompted for snippets.
223
224 You can customize it with
225 =M-x customize-variable RET yas-prompt-functions RET=. Alternatively you
226 can put in your emacs-file:
227
228 Currently there are some alternatives solution with YASnippet.
229
230 **** Use the X window system
231
232 [[./images/x-menu.png]]
233
234 The function [[sym:yas-x-prompt][=yas-x-prompt=]] can be used to show a popup menu for you to
235 select. This menu will be part of you native window system widget, which
236 means:
237
238 - It usually looks beautiful. E.g. when you compile Emacs with gtk
239 support, this menu will be rendered with your gtk theme.
240 - Your window system may or may not allow to you use =C-n=, =C-p= to
241 navigate this menu.
242 - This function can't be used when in a terminal.
243
244 **** Minibuffer prompting
245
246 [[./images/ido-menu.png]]
247
248 You can use functions [[sym:yas-completing-prompt][=yas-completing-prompt=]] for the classic emacs
249 completion method or [[sym:yas-ido-prompt][=yas-ido-prompt=]] for a much nicer looking method.
250 The best way is to try it. This works in a terminal.
251
252 **** Use =dropdown-menu.el=
253
254 [[./images/dropdown-menu.png]]
255
256 The function [[sym:yas-dropdown-prompt][=yas-dropdown-prompt=]] can also be placed in the
257 [[sym:yas-prompt-functions][=yas-prompt-functions=]] list.
258
259 This works in both window system and terminal and is customizable, you
260 can use =C-n=, =C-p= to navigate, =q= to quit and even press =6= as a
261 shortcut to select the 6th candidate.
262
263 **** Roll your own
264
265 See the documentation on variable [[sym:yas-prompt-functions][=yas-prompt-functions=]]
266