Automatic documentation update.

From fe288a156c063666d9c6613b6eea0ed5a515a86b
This commit is contained in:
Noam Postavsky 2014-05-11 19:46:20 -04:00
parent cdbb51ec43
commit a65bb6dfdf
7 changed files with 86 additions and 42 deletions

View File

@ -7,7 +7,7 @@
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>
<meta name="title" content="Frequently Asked Questions"/>
<meta name="generator" content="Org-mode"/>
<meta name="generated" content="2013-12-24T11:50-0500"/>
<meta name="generated" content="2014-05-11T19:37-0400"/>
<meta name="author" content=""/>
<meta name="description" content=""/>
<meta name="keywords" content=""/>
@ -391,7 +391,7 @@ directive:
</div>
<div id="postamble">
<hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2013-12-24T11:50-0500 from 78c8b5eb8058e8da523542b1b1de7e21a5b60e14
<hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2014-05-11T19:37-0400 from fe288a156c063666d9c6613b6eea0ed5a515a86b
</p>
<p class='xhtml-validation'><a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a></p>

View File

@ -7,7 +7,7 @@
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<meta name="title" content="Yet another snippet extension"/>
<meta name="generator" content="Org-mode"/>
<meta name="generated" content="2013-12-24T11:50-0500"/>
<meta name="generated" content="2014-05-11T19:37-0400"/>
<meta name="author" content=""/>
<meta name="description" content=""/>
<meta name="keywords" content=""/>
@ -194,7 +194,7 @@ for the JavaScript code in this tag.
</div>
<div id="postamble">
<hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2013-12-24T11:50-0500 from 78c8b5eb8058e8da523542b1b1de7e21a5b60e14
<hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2014-05-11T19:37-0400 from fe288a156c063666d9c6613b6eea0ed5a515a86b
</p>
<p class='xhtml-validation'><a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a></p>

View File

@ -7,7 +7,7 @@
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>
<meta name="title" content="Writing snippets"/>
<meta name="generator" content="Org-mode"/>
<meta name="generated" content="2013-12-24T11:50-0500"/>
<meta name="generated" content="2014-05-11T19:37-0400"/>
<meta name="author" content=""/>
<meta name="description" content=""/>
<meta name="keywords" content=""/>
@ -154,7 +154,9 @@ for the JavaScript code in this tag.
<li><a href="#sec-2-4"><code># group:</code> snippet menu grouping</a></li>
<li><a href="#sec-2-5"><code># expand-env:</code> expand environment</a></li>
<li><a href="#sec-2-6"><code># binding:</code> direct keybinding</a></li>
<li><a href="#sec-2-7"><code># contributor:</code> snippet author</a></li>
<li><a href="#sec-2-7"><code># type:</code> <code>snippet</code> or <code>command</code></a></li>
<li><a href="#sec-2-8"><code># uuid:</code> unique identifier</a></li>
<li><a href="#sec-2-9"><code># contributor:</code> snippet author</a></li>
</ul>
</li>
<li><a href="#sec-3">Template syntax</a>
@ -458,10 +460,43 @@ will expand the paragraph tag without newlines.
</div>
<div id="outline-container-2-7" class="outline-3">
<h3 id="sec-2-7"><code># contributor:</code> snippet author</h3>
<h3 id="sec-2-7"><code># type:</code> <code>snippet</code> or <code>command</code></h3>
<div class="outline-text-3" id="text-2-7">
<p>
If the <code>type</code> directive is set to <code>command</code>, the body of the snippet
is interpreted as lisp code to be evaluated when the snippet is
triggered.
</p>
<p>
If it's <code>snippet</code> (the default when there is no <code>type</code> directive), the
snippet body will be parsed according to the <a href="#sec-3">Template Syntax</a>,
described below.
</p>
</div>
</div>
<div id="outline-container-2-8" class="outline-3">
<h3 id="sec-2-8"><code># uuid:</code> unique identifier</h3>
<div class="outline-text-3" id="text-2-8">
<p>
This provides to a way to identify a snippet, independent of its name.
Loading a second snippet file with the same uuid would replace the
previous snippet.
</p>
</div>
</div>
<div id="outline-container-2-9" class="outline-3">
<h3 id="sec-2-9"><code># contributor:</code> snippet author</h3>
<div class="outline-text-3" id="text-2-9">
<p>
This is optional and has no effect whatsoever on snippet functionality,
but it looks nice.
@ -472,7 +507,7 @@ but it looks nice.
</div>
<div id="outline-container-3" class="outline-2">
<h2 id="sec-3">Template syntax</h2>
<h2 id="sec-3"><span class="target">Template syntax</span></h2>
<div class="outline-text-2" id="text-3">
@ -490,8 +525,8 @@ to TextMate's.
<p>
Arbitrary text can be included as the content of a template. They are
usually interpreted as plain text, except <code>$</code> and ==. You need to
use \` to escape them: <code>\$</code> and <code>\</code>. The \` itself may also needed to be
usually interpreted as plain text, except <code>$</code> and <code>`</code>. You need to
use <code>\</code> to escape them: <code>\$</code> and <code>\`</code>. The <code>\</code> itself may also needed to be
escaped as <code>\\</code> sometimes.
</p>
</div>
@ -505,7 +540,7 @@ escaped as <code>\\</code> sometimes.
<p>
Emacs-Lisp code can be embedded inside the template, written inside
back-quotes (==). The lisp forms are evaluated when the snippet is
back-quotes (<code>`</code>). The lisp forms are evaluated when the snippet is
being expanded. The evaluation is done in the same buffer as the
snippet being expanded.
</p>
@ -840,7 +875,7 @@ performs the normal Emacs <code>delete-char</code> command.
</div>
<div id="postamble">
<hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2013-12-24T11:50-0500 from 78c8b5eb8058e8da523542b1b1de7e21a5b60e14
<hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2014-05-11T19:37-0400 from fe288a156c063666d9c6613b6eea0ed5a515a86b
</p>
<p class='xhtml-validation'><a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a></p>

View File

@ -7,7 +7,7 @@
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>
<meta name="title" content="Expanding snippets"/>
<meta name="generator" content="Org-mode"/>
<meta name="generated" content="2013-12-24T11:50-0500"/>
<meta name="generated" content="2014-05-11T19:37-0400"/>
<meta name="author" content=""/>
<meta name="description" content=""/>
<meta name="keywords" content=""/>
@ -633,7 +633,7 @@ See the documentation on variable <a href="snippet-reference.html#yas-prompt-fun
</div>
<div id="postamble">
<hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2013-12-24T11:50-0500 from 78c8b5eb8058e8da523542b1b1de7e21a5b60e14
<hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2014-05-11T19:37-0400 from fe288a156c063666d9c6613b6eea0ed5a515a86b
</p>
<p class='xhtml-validation'><a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a></p>

View File

@ -7,7 +7,7 @@
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>
<meta name="title" content="YASnippet menu"/>
<meta name="generator" content="Org-mode"/>
<meta name="generated" content="2013-12-24T11:50-0500"/>
<meta name="generated" content="2014-05-11T19:37-0400"/>
<meta name="author" content=""/>
<meta name="description" content=""/>
<meta name="keywords" content=""/>
@ -269,7 +269,7 @@ variables.
</div>
<div id="postamble">
<hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2013-12-24T11:50-0500 from 78c8b5eb8058e8da523542b1b1de7e21a5b60e14
<hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2014-05-11T19:37-0400 from fe288a156c063666d9c6613b6eea0ed5a515a86b
</p>
<p class='xhtml-validation'><a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a></p>

View File

@ -7,7 +7,7 @@
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>
<meta name="title" content="Organizing snippets"/>
<meta name="generator" content="Org-mode"/>
<meta name="generated" content="2013-12-24T11:50-0500"/>
<meta name="generated" content="2014-05-11T19:37-0400"/>
<meta name="author" content=""/>
<meta name="description" content=""/>
<meta name="keywords" content=""/>
@ -379,7 +379,7 @@ ruby-mode/
</div>
<div id="postamble">
<hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2013-12-24T11:50-0500 from 78c8b5eb8058e8da523542b1b1de7e21a5b60e14
<hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2014-05-11T19:37-0400 from fe288a156c063666d9c6613b6eea0ed5a515a86b
</p>
<p class='xhtml-validation'><a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a></p>

View File

@ -7,7 +7,7 @@
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>
<meta name="title" content="Reference"/>
<meta name="generator" content="Org-mode"/>
<meta name="generated" content="2013-12-24T11:50-0500"/>
<meta name="generated" content="2014-05-11T19:37-0400"/>
<meta name="author" content=""/>
<meta name="description" content=""/>
<meta name="keywords" content=""/>
@ -227,6 +227,7 @@ for the JavaScript code in this tag.
<li><a href="#sec-4">Useful variables</a>
<ul>
<li><a href="#yas-global-mode-buffers"><code>yas-global-mode-buffers</code></a></li>
<li><a href="#yas-after-reload-hook"><code>yas-after-reload-hook</code></a></li>
<li><a href="#yas-snippet-beg"><code>yas-snippet-beg</code></a></li>
<li><a href="#yas-after-exit-snippet-hook"><code>yas-after-exit-snippet-hook</code></a></li>
<li><a href="#yas-global-mode-hook"><code>yas-global-mode-hook</code></a></li>
@ -879,8 +880,7 @@ under the menu "Yasnippet".
<li>If set to <code>full</code>, every submenu is listed
</li>
<li>It set to nil, don't display a menu at all (this requires a
<a href="#yas-reload-all"><code>yas-reload-all</code></a> call if the menu is already visible).
<li>If set to <code>nil</code>, hide the menu.
</li>
</ul>
@ -1122,8 +1122,8 @@ The remaining elements are strings.
defining snippets.
</p>
<p>
<i>uuid</i> is the snippets "unique-id". Loading a second snippet file
with the same uuid replaced the previous snippet.
<i>uuid</i> is the snippet's "unique-id". Loading a second snippet
file with the same uuid would replace the previous snippet.
</p>
<p>
You can use <code>yas--parse-template</code> to return such lists based on
@ -1217,9 +1217,6 @@ It doesn't make any sense to call <code>func</code> programatically.
<code>omit-items</code> is a list of snippet uuid's that will always be
omitted from <code>mode</code>'s menu, even if they're manually loaded.
</p>
<p>
This function does nothing if <a href="#yas-use-menu"><code>yas-use-menu</code></a> is nil.
</p>
</div>
</div>
@ -1331,8 +1328,20 @@ considered when expanding the snippet.
</div>
<div id="outline-container-yas-after-reload-hook" class="outline-3">
<h3 id="yas-after-reload-hook"><a name="sec-4-2" id="sec-4-2"></a><code>yas-after-reload-hook</code></h3>
<div class="outline-text-3" id="text-yas-after-reload-hook">
<p>
Hooks run after <a href="#yas-reload-all"><code>yas-reload-all</code></a>.
</p>
</div>
</div>
<div id="outline-container-yas-snippet-beg" class="outline-3">
<h3 id="yas-snippet-beg"><a name="sec-4-2" id="sec-4-2"></a><code>yas-snippet-beg</code></h3>
<h3 id="yas-snippet-beg"><a name="sec-4-3" id="sec-4-3"></a><code>yas-snippet-beg</code></h3>
<div class="outline-text-3" id="text-yas-snippet-beg">
@ -1344,7 +1353,7 @@ Beginning position of the last snippet committed.
</div>
<div id="outline-container-yas-after-exit-snippet-hook" class="outline-3">
<h3 id="yas-after-exit-snippet-hook"><a name="sec-4-3" id="sec-4-3"></a><code>yas-after-exit-snippet-hook</code></h3>
<h3 id="yas-after-exit-snippet-hook"><a name="sec-4-4" id="sec-4-4"></a><code>yas-after-exit-snippet-hook</code></h3>
<div class="outline-text-3" id="text-yas-after-exit-snippet-hook">
@ -1369,7 +1378,7 @@ Attention: These hooks are not run when exiting nested/stacked snippet expansion
</div>
<div id="outline-container-yas-global-mode-hook" class="outline-3">
<h3 id="yas-global-mode-hook"><a name="sec-4-4" id="sec-4-4"></a><code>yas-global-mode-hook</code></h3>
<h3 id="yas-global-mode-hook"><a name="sec-4-5" id="sec-4-5"></a><code>yas-global-mode-hook</code></h3>
<div class="outline-text-3" id="text-yas-global-mode-hook">
@ -1381,7 +1390,7 @@ Attention: These hooks are not run when exiting nested/stacked snippet expansion
</div>
<div id="outline-container-yas-dont-activate" class="outline-3">
<h3 id="yas-dont-activate"><a name="sec-4-5" id="sec-4-5"></a><code>yas-dont-activate</code></h3>
<h3 id="yas-dont-activate"><a name="sec-4-6" id="sec-4-6"></a><code>yas-dont-activate</code></h3>
<div class="outline-text-3" id="text-yas-dont-activate">
@ -1413,7 +1422,7 @@ mode's hook.
</div>
<div id="outline-container-yas-minor-mode-map" class="outline-3">
<h3 id="yas-minor-mode-map"><a name="sec-4-6" id="sec-4-6"></a><code>yas-minor-mode-map</code></h3>
<h3 id="yas-minor-mode-map"><a name="sec-4-7" id="sec-4-7"></a><code>yas-minor-mode-map</code></h3>
<div class="outline-text-3" id="text-yas-minor-mode-map">
@ -1425,7 +1434,7 @@ The keymap used when <a href="#yas-minor-mode"><code>yas-minor-mode</code></a> i
</div>
<div id="outline-container-yas-moving-away-p" class="outline-3">
<h3 id="yas-moving-away-p"><a name="sec-4-7" id="sec-4-7"></a><code>yas-moving-away-p</code></h3>
<h3 id="yas-moving-away-p"><a name="sec-4-8" id="sec-4-8"></a><code>yas-moving-away-p</code></h3>
<div class="outline-text-3" id="text-yas-moving-away-p">
@ -1437,7 +1446,7 @@ Non-nil if user is about to exit field.
</div>
<div id="outline-container-yas-buffer-local-condition" class="outline-3">
<h3 id="yas-buffer-local-condition"><a name="sec-4-8" id="sec-4-8"></a><code>yas-buffer-local-condition</code></h3>
<h3 id="yas-buffer-local-condition"><a name="sec-4-9" id="sec-4-9"></a><code>yas-buffer-local-condition</code></h3>
<div class="outline-text-3" id="text-yas-buffer-local-condition">
@ -1528,7 +1537,7 @@ snippet itself contains a condition that returns the symbol
</div>
<div id="outline-container-yas-modified-p" class="outline-3">
<h3 id="yas-modified-p"><a name="sec-4-9" id="sec-4-9"></a><code>yas-modified-p</code></h3>
<h3 id="yas-modified-p"><a name="sec-4-10" id="sec-4-10"></a><code>yas-modified-p</code></h3>
<div class="outline-text-3" id="text-yas-modified-p">
@ -1540,7 +1549,7 @@ Non-nil if field has been modified by user or transformation.
</div>
<div id="outline-container-yas-before-expand-snippet-hook" class="outline-3">
<h3 id="yas-before-expand-snippet-hook"><a name="sec-4-10" id="sec-4-10"></a><code>yas-before-expand-snippet-hook</code></h3>
<h3 id="yas-before-expand-snippet-hook"><a name="sec-4-11" id="sec-4-11"></a><code>yas-before-expand-snippet-hook</code></h3>
<div class="outline-text-3" id="text-yas-before-expand-snippet-hook">
@ -1552,7 +1561,7 @@ Hooks to run just before expanding a snippet.
</div>
<div id="outline-container-yas-keymap" class="outline-3">
<h3 id="yas-keymap"><a name="sec-4-11" id="sec-4-11"></a><code>yas-keymap</code></h3>
<h3 id="yas-keymap"><a name="sec-4-12" id="sec-4-12"></a><code>yas-keymap</code></h3>
<div class="outline-text-3" id="text-yas-keymap">
@ -1564,7 +1573,7 @@ The active keymap while a snippet expansion is in progress.
</div>
<div id="outline-container-yas-key-syntaxes" class="outline-3">
<h3 id="yas-key-syntaxes"><a name="sec-4-12" id="sec-4-12"></a><code>yas-key-syntaxes</code></h3>
<h3 id="yas-key-syntaxes"><a name="sec-4-13" id="sec-4-13"></a><code>yas-key-syntaxes</code></h3>
<div class="outline-text-3" id="text-yas-key-syntaxes">
@ -1590,7 +1599,7 @@ isn't a trigger key, "foo-bar" is tried, respecting a second
</div>
<div id="outline-container-yas-snippet-end" class="outline-3">
<h3 id="yas-snippet-end"><a name="sec-4-13" id="sec-4-13"></a><code>yas-snippet-end</code></h3>
<h3 id="yas-snippet-end"><a name="sec-4-14" id="sec-4-14"></a><code>yas-snippet-end</code></h3>
<div class="outline-text-3" id="text-yas-snippet-end">
@ -1602,7 +1611,7 @@ End position of the last snippet committed.
</div>
<div id="outline-container-yas-minor-mode-hook" class="outline-3">
<h3 id="yas-minor-mode-hook"><a name="sec-4-14" id="sec-4-14"></a><code>yas-minor-mode-hook</code></h3>
<h3 id="yas-minor-mode-hook"><a name="sec-4-15" id="sec-4-15"></a><code>yas-minor-mode-hook</code></h3>
<div class="outline-text-3" id="text-yas-minor-mode-hook">
@ -1614,7 +1623,7 @@ Hook run when <a href="#yas-minor-mode"><code>yas-minor-mode</code></a> is turne
</div>
<div id="outline-container-yas-verbosity" class="outline-3">
<h3 id="yas-verbosity"><a name="sec-4-15" id="sec-4-15"></a><code>yas-verbosity</code></h3>
<h3 id="yas-verbosity"><a name="sec-4-16" id="sec-4-16"></a><code>yas-verbosity</code></h3>
<div class="outline-text-3" id="text-yas-verbosity">
@ -1626,7 +1635,7 @@ Log level for <code>yas--message</code> 4 means trace most anything, 0 means not
</div>
<div id="outline-container-yas-minor-mode-major-mode" class="outline-3">
<h3 id="yas-minor-mode-major-mode"><a name="sec-4-16" id="sec-4-16"></a><code>yas-minor-mode-major-mode</code></h3>
<h3 id="yas-minor-mode-major-mode"><a name="sec-4-17" id="sec-4-17"></a><code>yas-minor-mode-major-mode</code></h3>
<div class="outline-text-3" id="text-yas-minor-mode-major-mode">
@ -1639,7 +1648,7 @@ Log level for <code>yas--message</code> 4 means trace most anything, 0 means not
</div>
<div id="postamble">
<hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2013-12-24T11:50-0500 from 78c8b5eb8058e8da523542b1b1de7e21a5b60e14
<hr><p class='creator'>Generated by <a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24 on 2014-05-11T19:37-0400 from fe288a156c063666d9c6613b6eea0ed5a515a86b
</p>
<p class='xhtml-validation'><a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a></p>