From d95d8e1999f99346eb70e923bd3c1f4c20f4d892 Mon Sep 17 00:00:00 2001 From: jake romer Date: Sun, 7 Jun 2015 12:12:37 -0400 Subject: [PATCH] Replace soft tabs with hard ones. Conforms to the snippet syntax in the rest of the file. Also resolves an error raised in UltiSnips referenced in https://github.com/SirVer/ultisnips/issues/233 --- snippets/ruby.snippets | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/snippets/ruby.snippets b/snippets/ruby.snippets index c999ba2..6b9d85d 100644 --- a/snippets/ruby.snippets +++ b/snippets/ruby.snippets @@ -724,10 +724,10 @@ snippet is snippet isn it { should_not ${0} } snippet iexp - it { expect(${1:object}).${1} ${0} } + it { expect(${1:object}).${1} ${0} } snippet iexpb - it { expect { ${1:object} }.${1} ${0} } + it { expect { ${1:object} }.${1} ${0} } snippet iiexp - it { is_expected.to ${0} } + it { is_expected.to ${0} } snippet iiexpn - it { is_expected.not_to ${0} } + it { is_expected.not_to ${0} }