From 79a0442e54d3b15249831b6099154b2dba04ed06 Mon Sep 17 00:00:00 2001 From: Felix Jung Date: Mon, 23 Jun 2014 12:37:17 +0200 Subject: [PATCH] Added ternary operator snippet --- snippets/julia.snippets | 3 +++ 1 file changed, 3 insertions(+) diff --git a/snippets/julia.snippets b/snippets/julia.snippets index 77a7dac..1876ed8 100644 --- a/snippets/julia.snippets +++ b/snippets/julia.snippets @@ -69,6 +69,9 @@ snippet ife full if-else statement ${0} end +snippet tern ternary operator + ${1} ? ${2} : ${3:nothing} + # Exceptions snippet try try catch try