From 0f452a4875eb9cbffb359cfc23877835b5782216 Mon Sep 17 00:00:00 2001 From: Bruno Sutic Date: Sat, 17 Aug 2013 13:14:05 -0700 Subject: [PATCH] Fix ruby `super_call` snippet There was no tab in the beginning of the line and snippet wasn't working. --- snippets/ruby.snippets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/ruby.snippets b/snippets/ruby.snippets index 43084f6..4c93c74 100644 --- a/snippets/ruby.snippets +++ b/snippets/ruby.snippets @@ -1075,4 +1075,4 @@ snippet isres snippet isresw it { should respond_to(:${1}).with(${2}).arguments } snippet super_call - ${1:super_class}.instance_method(:${2:method}).bind(self).call + ${1:super_class}.instance_method(:${2:method}).bind(self).call