From 7cd12215811c013d53370d58adeb0e075b40a814 Mon Sep 17 00:00:00 2001 From: Felix Jung Date: Wed, 11 Jun 2014 20:06:51 +0200 Subject: [PATCH] Changed from spaces to tabs --- snippets/julia.snippets | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/snippets/julia.snippets b/snippets/julia.snippets index b92c8c4..3f84db5 100644 --- a/snippets/julia.snippets +++ b/snippets/julia.snippets @@ -1,36 +1,36 @@ snippet fun - function ${1:functionname}(${2:parameters}) - ${0} - end + function ${1:functionname}(${2:parameters}) + ${0} + end # For loop iterating over iterable container snippet forin - for ${1} in ${2} - ${0} - end + for ${1} in ${2} + ${0} + end # Standard for loop snippet for - for ${1} = ${2} - ${0} - end + for ${1} = ${2} + ${0} + end # Nested for loop snippet fornest - for ${1} = ${2}, ${3} = ${4} - ${0} - end + for ${1} = ${2}, ${3} = ${4} + ${0} + end # While loop snippet while - while ${1} ${2:<=} ${3} - ${0} - end + while ${1} ${2:<=} ${3} + ${0} + end # Try catch snippet try - try - ${1} - catch ${2} - ${0} - end + try + ${1} + catch ${2} + ${0} + end