<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.emacs.yasnippet.devel">
    <title>gmane.emacs.yasnippet.devel</title>
    <link>http://blog.gmane.org/gmane.emacs.yasnippet.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.yasnippet.devel/1033"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.yasnippet.devel/1032"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.yasnippet.devel/1031"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.yasnippet.devel/1030"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.yasnippet.devel/1029"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.yasnippet.devel/1027"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.yasnippet.devel/1024"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.yasnippet.devel/1021"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.yasnippet.devel/1020"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.yasnippet.devel/1013"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.yasnippet.devel/1012"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.yasnippet.devel/1011"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.yasnippet.devel/999"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.yasnippet.devel/998"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.yasnippet.devel/997"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.yasnippet.devel/978"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.yasnippet.devel/977"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.yasnippet.devel/974"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.yasnippet.devel/973"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.yasnippet.devel/972"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.yasnippet.devel/1033">
    <title>yasnippet and autopair/paredit conflict</title>
    <link>http://comments.gmane.org/gmane.emacs.yasnippet.devel/1033</link>
    <description>&lt;pre&gt;I'm trying to define a snippet to insert \left( \right) structures in
LaTeX. I'd like it to be able to choose between parentheses, brackets,
square brackets with something like:

--8&amp;lt;---------------cut here---------------start-------------&amp;gt;8---
\left$1$0\right$1
--8&amp;lt;---------------cut here---------------end---------------&amp;gt;8---

The thing is that I'm also using paredit and/or autopair modes in all
LaTeX buffers and if I type "(" during the snippet expansion, the
matching ")" is also inserted.

I've tried to temporarily disable paredit/autopair from within the
snippet template with no success so far. Any idea how I should go about
setting this up ?

Julien.

&lt;/pre&gt;</description>
    <dc:creator>Julien Cubizolles</dc:creator>
    <dc:date>2013-03-06T22:58:19</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.yasnippet.devel/1032">
    <title>About yas / choose value</title>
    <link>http://comments.gmane.org/gmane.emacs.yasnippet.devel/1032</link>
    <description>&lt;pre&gt;Hello,
If you test the code below, you will notice that there is a small problem: 
" / yas / text " what appears, what I do not want.
How to correct the code?
Thank you.

# -*- mode: snippet -*-
# name:ensemble 
# key: ens
# --
${1:$$(yas/choose-value '("N" "Z" "D" "Q" 
"R"))}${1:$(yas/latex-choose-group yas/text)} $0

(defun yas/latex-choose-group (text)
  (cond ((string= text "N") "\$\\\mathbb{N}\$" )
        ((string= text "Z") "\$\\\mathbb{Z}\$" )
        ((string= text "D") "\$\\\mathbb{D}\$" )
        ((string= text "Q") "\$\\\mathbb{Q}\$" )   
        ((string= text "R") "\$\\\mathbb{R}\$" ))) 

&lt;/pre&gt;</description>
    <dc:creator>Fab</dc:creator>
    <dc:date>2013-02-26T15:05:56</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.yasnippet.devel/1031">
    <title>Issue 198 in yasnippet: (yas/expand-snippet "\\$1 $1") doesn't work</title>
    <link>http://comments.gmane.org/gmane.emacs.yasnippet.devel/1031</link>
    <description>&lt;pre&gt;Status: Accepted
Owner: ----
Labels: Type-Defect Priority-Medium

New issue 198 by ohwoeo...-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org: (yas/expand-snippet "\\$1 $1")  
doesn't work
http://code.google.com/p/yasnippet/issues/detail?id=198

What steps will reproduce the problem?
1. Eval (yas/expand-snippet "\\$1 $1")
2.
3.

What is the expected output? What do you see instead?
Expected expansion e.g.:
\ABC ABC
Instead gives:
$1


Please use labels and text to provide additional information.


&lt;/pre&gt;</description>
    <dc:creator>codesite-noreply-hpIqsD4AKlfQT0dZR+AlfA&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2013-01-25T15:40:12</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.yasnippet.devel/1030">
    <title>Issue 197 in yasnippet: yas-after-exit-snippet-hook won't run when it is specified in snippet file.</title>
    <link>http://comments.gmane.org/gmane.emacs.yasnippet.devel/1030</link>
    <description>&lt;pre&gt;Status: Accepted
Owner: ----
Labels: Type-Defect Priority-Medium

New issue 197 by kawabata...-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org: yas-after-exit-snippet-hook won't  
run when it is specified in snippet file.
http://code.google.com/p/yasnippet/issues/detail?id=197

When I write the following snippet, as I want to run some buffer clean-up
code after executing the snippet,


It didn't run the `do-some-cleanup' function.
It works when I execute (setq yas-after-exit-snipped-hook 'do-some-cleanup)

Is there any way to run arbitary elisp code in editing buffer
after I finished expansion?


&lt;/pre&gt;</description>
    <dc:creator>codesite-noreply-hpIqsD4AKlfQT0dZR+AlfA&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2013-01-07T13:13:53</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.yasnippet.devel/1029">
    <title>Problem encountered when using auto-complete</title>
    <link>http://comments.gmane.org/gmane.emacs.yasnippet.devel/1029</link>
    <description>&lt;pre&gt;Transfer from yasnippet-bundle to yasnippet because the latter is easier to 
expand. But with yasnippet, one could not use "TAB" to complete the words 
provided by ac-dict (from auto-complete, also a fancy tool of which I fond 
a lot) while with yasnippet-bundle everything's OK. It's very embarrassing 
only to use "RET"(enter) to keep auto-complete working. Therefore, I wonder 
that out there might be somewhere a bug or something. The version of 
yasnippet I'm using is the lastest, I mean the very up-to-date. The version 
yasnippet-bundle is yasnippet-bundle-0.6.1c, which's also the lastest, it 
seems there's no more new bundle version. 

Thanks in advance for any possible help. 

&lt;/pre&gt;</description>
    <dc:creator>F.YE</dc:creator>
    <dc:date>2012-12-19T15:30:11</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.yasnippet.devel/1027">
    <title>yasnippet errors on emacs.app on mac ox lion</title>
    <link>http://comments.gmane.org/gmane.emacs.yasnippet.devel/1027</link>
    <description>&lt;pre&gt;;; yasnippet                                                               
     
(add-to-list 'load-path
              "~/.emacs.d/plugins/yasnippet")
(require 'yasnippet)
(setq yas/snippet-dirs 
'("~/.emacs.d/plugins/yasnippet/snippets""~/.emacs.d/plu\
gins/yasnippet/extras/imported"))
(setq yas/prompt-functions
      '(yas/dropdown-prompt yas/x-prompt yas/completing-prompt 
yas/ido-prompt y\
as/no-prompt))
(yas-global-mode 1)
(yas-minor-mode-on)


error is below:

Debugger entered--Lisp error: (wrong-number-of-arguments 
called-interactively-p 1)
  (called-interactively-p (quote interactive))
  (yas--called-interactively-p (quote interactive))
  (if (yas--called-interactively-p (quote interactive)) (progn 
(yas--message 3 "Loaded snippets from %s." top-level-dir)))
  (when (yas--called-interactively-p (quote interactive)) (yas--message 3 
"Loaded snippets from %s." top-level-dir))
  yas-load-directory("~/.emacs.d/plugins/yasnippet/extras/imported" t)
  (cond ((file-directory-p directory) (yas-load-directory directory ...) 
(if nojit ... ...)) (t (push ... errors)))
  (while --cl-dolist-temp-- (setq directory (car --cl-dolist-temp--)) (cond 
(... ... ...) (t ...)) (setq --cl-dolist-temp-- (cdr --cl-dolist-temp--)))
  (let ((--cl-dolist-temp-- ...) directory) (while --cl-dolist-temp-- (setq 
directory ...) (cond ... ...) (setq --cl-dolist-temp-- ...)) nil)
  (catch (quote --cl-block-nil--) (let (... directory) (while 
--cl-dolist-temp-- ... ... ...) nil))
  (cl-block-wrapper (catch (quote --cl-block-nil--) (let ... ... nil)))
  (block nil (let (... directory) (while --cl-dolist-temp-- ... ... ...) 
nil))
  (dolist (directory (reverse ...)) (cond (... ... ...) (t ...)))
  (if yas-snippet-dirs (dolist (directory ...) (cond ... ...)) 
(call-interactively (quote yas-load-directory)))
  (let (errors) (if yas-snippet-dirs (dolist ... ...) (call-interactively 
...)) errors)
  yas--load-snippet-dirs(nil)
  (setq errors (yas--load-snippet-dirs interactive))
  (let ((errors) (snippet-editing-buffers ...)) (when 
snippet-editing-buffers (if interactive ... ...)) (setq yas--tables 
(make-hash-table)) (setq yas--parents (make-hash-table)) ($
  (catch (quote abort) (let (... ...) (when snippet-editing-buffers ...) 
(setq yas--tables ...) (setq yas--parents ...) (setq yas--menu-table ...) 
(setq yas--scheduled-jit-loads ..$
  yas-reload-all()
  (progn (yas-reload-all))
  (if yas-global-mode (progn (yas-reload-all)))
  (when yas-global-mode (yas-reload-all))
  yas--global-mode-reload-with-jit-maybe()
  run-hooks(yas-global-mode-hook yas-global-mode-on-hook)
  yas--global-mode-reload-with-jit-maybe()
  run-hooks(yas-global-mode-hook yas-global-mode-on-hook)
  yas-global-mode(1)
  eval-buffer(#&amp;lt;buffer  *load*&amp;gt; nil "/Users/qzi/.emacs" nil t)  ; Reading 
at buffer position 821
  load-with-code-conversion("/Users/qzi/.emacs" "/Users/qzi/.emacs" t t)
  load("~/.emacs" t t)
  #[nil "^H\205\276^&amp;lt; at &amp;gt;   \306=\203^Q^&amp;lt; at &amp;gt;\307^H\310Q\202A^&amp;lt; at &amp;gt; 
\311=\2033^&amp;lt; at &amp;gt;\312\307\313\314#\203#^&amp;lt; at &amp;gt;\315\202A^&amp;lt; at &amp;gt;\312\307\313\316#\203/^&amp;lt; at &amp;gt;\317\202A^&amp;lt; at &amp;gt;\315\202A^&amp;lt; at &amp;gt; 
  \320=\203=^&amp;lt; at &amp;gt;\321\202A^&amp;lt; at &amp;gt;\307^$
  command-line()
  normal-top-level()




&lt;/pre&gt;</description>
    <dc:creator>Qzi chiu</dc:creator>
    <dc:date>2012-12-14T12:36:49</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.yasnippet.devel/1024">
    <title>Problem with backslashes</title>
    <link>http://comments.gmane.org/gmane.emacs.yasnippet.devel/1024</link>
    <description>&lt;pre&gt;

Hi, I have installed yasnippet 0.8 from elpa on emacs 24 and I want to 
write a snippet that inserts this text into a LaTeX document (using AUCTeX):

\\

\vspace{10pt}

So I have this snippet:

# -*- mode: snippet -*-
# name: para
# key: para
# binding: direct-keybinding
# expand-env: ((some-var some-value))
# type: command
# --
\\\\

\\vspace{10pt}

but when I type para&amp;lt;TAB&amp;gt; all that happens is that the text para is 
removed. What am I doing wrong?

Thanks!

&lt;/pre&gt;</description>
    <dc:creator>Jim Burton</dc:creator>
    <dc:date>2012-11-15T11:24:08</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.yasnippet.devel/1021">
    <title>Issue 196 in yasnippet: video links on homepage dead</title>
    <link>http://comments.gmane.org/gmane.emacs.yasnippet.devel/1021</link>
    <description>&lt;pre&gt;Status: Accepted
Owner: ----
Labels: Type-Defect Priority-Medium

New issue 196 by kno...-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org: video links on homepage dead
http://code.google.com/p/yasnippet/issues/detail?id=196

What steps will reproduce the problem?
1. open http://capitaomorte.github.com/yasnippet/ in a browser
2. click link to youtube


What is the expected output? What do you see instead?

youtube states that the video is no longer available as the uploader  
account is closed

Please use labels and text to provide additional information.

&lt;/pre&gt;</description>
    <dc:creator>codesite-noreply-hpIqsD4AKlfQT0dZR+AlfA&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2012-11-03T17:32:48</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.yasnippet.devel/1020">
    <title>Issue 195 in yasnippet: Yasnippet pop-up menu missing items</title>
    <link>http://comments.gmane.org/gmane.emacs.yasnippet.devel/1020</link>
    <description>&lt;pre&gt;Status: Accepted
Owner: ----
Labels: Type-Defect Priority-Medium

New issue 195 by martin.p...-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org: Yasnippet pop-up menu missing items
http://code.google.com/p/yasnippet/issues/detail?id=195

What steps will reproduce the problem?
1. Enable Yasnippet
2. Start typing a function name
3. Provided help menu is missing items

What is the expected output? What do you see instead?

Some of the items in the pop-up menu are blank. They should be visible. See  
attached screen grab for more information.

Please use labels and text to provide additional information.

emacs-24.1-4.fc17.x86_64

(defvar yas/version "0.6.1b")




Attachments:
yasnippet_bug.png  7.7 KB

&lt;/pre&gt;</description>
    <dc:creator>codesite-noreply-hpIqsD4AKlfQT0dZR+AlfA&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2012-10-06T11:45:05</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.yasnippet.devel/1013">
    <title>Changelog for 0.7.0 and up?</title>
    <link>http://comments.gmane.org/gmane.emacs.yasnippet.devel/1013</link>
    <description>&lt;pre&gt;Hi,

the changelog at http://capitaomorte.github.com/yasnippet/changelog.html stopped 
getting updated after the move to Github. I can't find any other place 
listing changes for 0.7.0 and 0.8.0, is this not documented anymore?

Best regards,
shjk

&lt;/pre&gt;</description>
    <dc:creator>shjk</dc:creator>
    <dc:date>2012-07-25T14:20:07</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.yasnippet.devel/1012">
    <title>How to hide/overriding other snippet with same name defined for parent mode?</title>
    <link>http://comments.gmane.org/gmane.emacs.yasnippet.devel/1012</link>
    <description>&lt;pre&gt;Hi,

I've got a hl snippet to produce a horizontal line up to the fill column 
which is defined for text-mode. For some modes that have text-mode as 
parent (via .yas-parent) I want to replace this with a different snippet. 
In 0.5.* this was possible by just adding a snippet with the same name in 
the more specific mode. In 0.7.0 I get asked which of the two snippets I 
want to expand (without making it possible to see which is which). Is it 
possible to tell yasnippet to always use the more specific one in 
0.7.0/0.8.0? I can create a work-around by having a more complex snippet 
that expands to different things depending on the major-mode but this is a 
bit inconvenient and a hacky non-solution.

shjk

&lt;/pre&gt;</description>
    <dc:creator>shjk</dc:creator>
    <dc:date>2012-07-25T14:26:48</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.yasnippet.devel/1011">
    <title>Locating Python 2.x command for compiling doc</title>
    <link>http://comments.gmane.org/gmane.emacs.yasnippet.devel/1011</link>
    <description>&lt;pre&gt;Hello,

I've noted that the Python script `doc/compile-doc.py' used for
generating HTML documentation works only with Python 2.x. Furthermore
it is called in the rake file by `sh doc/compile-doc.py ...'. Thus
locating of the Python command to use relies on the
`#!/usr/bin/python' line in the script.

Therefore the working of `doc/compile-doc.py' makes the asumption that
there is a Python 2 command at `/usr/bin/python'. This does not work,
for instance, for Arch Linux: On such a system `/usr/bin/python' is
Python 3; the Python 2 command would be at `/usr/bin/python2'. It
would also not work with Python 2 installation below `/usr/local'.

Thus I've implemented a in the rake file a search for a Python 2
command following the following heuristics: First we try to locate
`python2' whithin $PATH, and if this fails, we are looking for
`python' in $PATH. The diff appended patches `Rakefile' for doing
this.

Two caveats for my patch. I am not a Ruby programmer, so my
implementation my be a little bit clumsy. And and works only for
UNIX-like systems - but could easily enhanced for platform
independence (by enhancing the `which' function - see, for instance,
http://stackoverflow.com/questions/2108727/which-in-ruby-checking-if-program-exists-in-path-from-ruby).

Dirk

&lt;/pre&gt;</description>
    <dc:creator>Dirk Ullrich</dc:creator>
    <dc:date>2012-07-25T12:35:30</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.yasnippet.devel/999">
    <title>Nested Snippets behaviour: Value of yas/text</title>
    <link>http://comments.gmane.org/gmane.emacs.yasnippet.devel/999</link>
    <description>&lt;pre&gt;I have written the following snippet for expanding the \sqrt function in 
latex. But There are problems when calling the snippet from within itself 
or any other snippets. ( I have yas/triggers-in-field set)

This function can be called as \sqrt{x} for a square root, or as 
\sqrt[n]{x} for an nth root. Calling it as \sqrt[]{x} causes problems, so 
the code below only prints the [] when n is a non-empty string

# -*- mode: snippet -*-
# key: rt
# group: math
# name : \sqrt[n]{x} or \sqrt{x}
# --
\sqrt${1:$(if (string-equal "" yas/text) "" "[")}${1:}${1:$(if 
(string-equal "" yas/text) "" "]")}{$2}$0

Now, this snippet works perfectly on its own, in latex-mode or using 
tryout-snippet. Typing
"rt TAB 3 TAB 2 TAB" produces \sqrt[3]{2}
and typing
"rt TAB TAB 2 TAB" produces \sqrt{2}
as expected

However, if it is called from within itself or another snippet, the snippet 
will not produce the square brackets. For example typing
"rt TAB 3 TAB rt TAB 5 TAB 2 TAB TAB"
produces
\sqrt[3]{\sqrt5{2}}

The yas/text field in the elisp code appears to have been detected as null 
in the nested snippet call.

Is there a workaround for this behaviour? Is there another yas/variable 
which contains the text that the elisp could should be calling? Any help 
would be appreciated.

&lt;/pre&gt;</description>
    <dc:creator>OMF</dc:creator>
    <dc:date>2012-07-22T17:09:32</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.yasnippet.devel/998">
    <title>How to insert conditionnal text</title>
    <link>http://comments.gmane.org/gmane.emacs.yasnippet.devel/998</link>
    <description>&lt;pre&gt;Hi,

I'm a new user of yasnippet, and I really enjoy it! It helps me *a lot* !

I use a lot of command on LaTeX with key syntax. I would like to make some 
part of snippet disappear if the I don't enter a string. For example

test&amp;lt;Tab&amp;gt;

will produce

\test[title={_}]

(the underscore is the cursor)

Now if I type &amp;lt;Tab&amp;gt;, the resulting text in the buffer should be

\test 

But if i type 'doo', I would like to see

\test[title={doo}]

Do you know if it's possible ?

Thank you very much !

--
  Paul Pichaureau

&lt;/pre&gt;</description>
    <dc:creator>Paul Pichaureau</dc:creator>
    <dc:date>2012-07-22T09:42:24</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.yasnippet.devel/997">
    <title>Snippet for delimiters for LaTeX</title>
    <link>http://comments.gmane.org/gmane.emacs.yasnippet.devel/997</link>
    <description>&lt;pre&gt;In LaTeX you have several options for delimiters:

*\left&amp;lt; \right&amp;gt;*
*\left( \right)*
*\left\{ \right\}*
*...*
*
*
I want to write a snippet which will expand to these delimiters; I want it 
to be interactive, namely using "yas/choose-value". I encounter two 
problems:
1. Say that I chose the "&amp;lt;" delimiter, then at the end of the expression 
"&amp;gt;" should appear. How can I do it?
2. The second problem relates to the usage of chars like "{" and "(". Is 
the following: *${2:$$(yas/choose-value '("&amp;lt;" "\{" "("))}* valid?

Thanks!

&lt;/pre&gt;</description>
    <dc:creator>Dror Atariah</dc:creator>
    <dc:date>2012-07-19T08:35:22</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.yasnippet.devel/978">
    <title>Moving one char backward when expanding the snippet</title>
    <link>http://comments.gmane.org/gmane.emacs.yasnippet.devel/978</link>
    <description>&lt;pre&gt;I'm trying to write a snippet which will expand to "\footnote{}" in LaTeX. 
The problem is the final code should look like:
*Hello World\footnote{The footnote}*
*
*
The goal is to be able to type the following:
*w o r d SPC f o o t TAB*
which will expand to:
*word\footnote{}*
I manage to get the following result:
*word \footnote{}*
*Note the space after 'word' which must not be there.*
*
*
I'm trying to use the *backward-char* function in the following way:
*`(backward-char 1)`\footnote{$1}$2*
but this doesn't work... I keep getting the space after the last word.

How can I avoid this? What is the right way to go?

&lt;/pre&gt;</description>
    <dc:creator>Dror Atariah</dc:creator>
    <dc:date>2012-07-12T14:10:13</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.yasnippet.devel/977">
    <title>snippets are not loading</title>
    <link>http://comments.gmane.org/gmane.emacs.yasnippet.devel/977</link>
    <description>&lt;pre&gt;I'm having trouble with my custom snippets being loaded. My config for 
yasnippet is

(require 'yasnippet)
(setq yas/snippet-dirs
      '("~/.emacs.d/el-get/yasnippet/snippets"))
(yas/global-mode 1)

I've created a "new spec" snippet via (yas/new-snippet) which is in ~/.emacs.d/el-get/yasnippet/snippets/ruby-mode/new 
spec

It contains the following

# -*- mode: snippet -*-
# name: new spec
# key: spec
# --
require "spec_helper"

describe ${1:Class} do

  it "${2:spec description}" do
    $0
  end

end

If I invoke (yas/find-snippets) it puts me in 
~/.emacs.d/el-get/yasnippet/snippets where I can go to ruby-mode and open 
the new spec snippet and invoke C-c C-c it will load properly into the 
ruby-mode and work from that point on.

But it doesn't get loaded when I start emacs for the first time. I wasn't 
really able to find a guide that would explain yasnippet autoloading and 
creating new snippets.

&lt;/pre&gt;</description>
    <dc:creator>Jakub Arnold</dc:creator>
    <dc:date>2012-06-28T08:48:17</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.yasnippet.devel/974">
    <title>Issue 194 in yasnippet: change yas/prompt-functions order when I call yas/insert-snippet</title>
    <link>http://comments.gmane.org/gmane.emacs.yasnippet.devel/974</link>
    <description>&lt;pre&gt;Status: Accepted
Owner: ----
Labels: Type-Defect Priority-Medium

New issue 194 by chenbin...-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org: change yas/prompt-functions order  
when I call yas/insert-snippet
http://code.google.com/p/yasnippet/issues/detail?id=194

What steps will reproduce the problem?
1. (require 'dropdown-list)
2.  M-x yas/insert-snippet
3.  You can see here only limited candidates are displayed in  
yas/dropdown-prompt and yas/completing-prompt is better

What can I do to use yas/completing-prompt when and only when I call  
yas/insert-snippet

yasnippet 0.7.0

&lt;/pre&gt;</description>
    <dc:creator>codesite-noreply-hpIqsD4AKlfQT0dZR+AlfA&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2012-06-17T13:48:35</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.yasnippet.devel/973">
    <title>Is there a way or can I request a Feature which filters keys/names/definition by a regex?</title>
    <link>http://comments.gmane.org/gmane.emacs.yasnippet.devel/973</link>
    <description>&lt;pre&gt;I'd like to be able to do

;;;(interactive)
M-x yas/find &amp;lt;return&amp;gt;    

;;; sample regex
link
                              
;;; Seen in mini buffer like ido or dropdown-list so I can choose...
Insert key: .._to (nested path plural) lt |.._to (nested path) lt |.._to 
(path plural) lt |.._to (path) lt |.._to model lt |.._to_function lf 
|stylesheet_link_tag slt                       



&lt;/pre&gt;</description>
    <dc:creator>Charles Magid</dc:creator>
    <dc:date>2012-06-16T15:31:19</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.yasnippet.devel/972">
    <title>Debugger entered--Lisp error: (wrong-type-argument consp nil)   setcdr(nil (:keys "W3C validation.yasnippet =&gt;"))</title>
    <link>http://comments.gmane.org/gmane.emacs.yasnippet.devel/972</link>
    <description>&lt;pre&gt;See Gist: git://gist.github.com/2920837.git

&lt;/pre&gt;</description>
    <dc:creator>Charles Magid</dc:creator>
    <dc:date>2012-06-12T23:48:28</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.yasnippet.devel/970">
    <title>Yasnippet disable menu</title>
    <link>http://comments.gmane.org/gmane.emacs.yasnippet.devel/970</link>
    <description>&lt;pre&gt;Hello!

Is there any way to disable the Yasnippet menu? ( use Yasnippet mainly as a 
source to auto-complete.) I set yas/use-menu to nil, but the menu is still 
there. yas/about:  yasnippet (version 0.7.0)

Regards,
pasja


&lt;/pre&gt;</description>
    <dc:creator>pasja</dc:creator>
    <dc:date>2012-06-08T12:44:16</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.emacs.yasnippet.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.emacs.yasnippet.devel</link>
  </textinput>
</rdf:RDF>
