From 7c1fc6cf88ba7fb066bc82fc35d65ed533039e38 Mon Sep 17 00:00:00 2001 From: Martin Grenfell Date: Tue, 14 Feb 2012 13:27:49 +0000 Subject: [PATCH] Fix a bug with the eruby:slt snippet One of the placeholders was missing a $ sign. --- UltiSnips/eruby.snippets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UltiSnips/eruby.snippets b/UltiSnips/eruby.snippets index 122fd11..1fdcfc1 100644 --- a/UltiSnips/eruby.snippets +++ b/UltiSnips/eruby.snippets @@ -256,7 +256,7 @@ render :partial => "${1:item}", :status => ${2:500} endsnippet snippet slt "stylesheet_link_tag" -`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`stylesheet_link_tag {1::all}${2:, :cache => ${3:true}}`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)` +`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`stylesheet_link_tag ${1::all}${2:, :cache => ${3:true}}`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)` endsnippet snippet st "submit_tag"