From 55993efe15bff989d09dd7e77d34b33726f7f890 Mon Sep 17 00:00:00 2001 From: "Jip J. Dekker" Date: Thu, 3 Dec 2015 12:21:28 +0100 Subject: [PATCH] Removes tab for the forall snippet --- CHANGELOG.md | 3 +++ snippets/language-mzn.cson | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc1fc7c..2d63139 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 0.3.1 - One tab too far +* Removes an tab in the forall snippet. + ## 0.3.0 - Colored constraints * Adds function coloring to all predicates documented in the 2.0 documentation. * Adds indentation rules for parentheses diff --git a/snippets/language-mzn.cson b/snippets/language-mzn.cson index 69404b4..0341c03 100644 --- a/snippets/language-mzn.cson +++ b/snippets/language-mzn.cson @@ -7,7 +7,7 @@ 'body': 'array[$1] of ${2:int}: $3;$4' 'forall': 'prefix': 'for' - 'body': 'forall($1) (\t$2)$3' + 'body': 'forall($1) ($2)$3' 'sum': 'prefix': 'sum' 'body': 'sum($1) ($2)$3'