Atom package to provide syntax highlighting for the MiniZinc constraint modelling language

Removes tab for the forall snippet

+4 -1
+3
CHANGELOG.md
··· 1 ## 0.3.0 - Colored constraints 2 * Adds function coloring to all predicates documented in the 2.0 documentation. 3 * Adds indentation rules for parentheses
··· 1 + ## 0.3.1 - One tab too far 2 + * Removes an tab in the forall snippet. 3 + 4 ## 0.3.0 - Colored constraints 5 * Adds function coloring to all predicates documented in the 2.0 documentation. 6 * Adds indentation rules for parentheses
+1 -1
snippets/language-mzn.cson
··· 7 'body': 'array[$1] of ${2:int}: $3;$4' 8 'forall': 9 'prefix': 'for' 10 - 'body': 'forall($1) (\t$2)$3' 11 'sum': 12 'prefix': 'sum' 13 'body': 'sum($1) ($2)$3'
··· 7 'body': 'array[$1] of ${2:int}: $3;$4' 8 'forall': 9 'prefix': 'for' 10 + 'body': 'forall($1) ($2)$3' 11 'sum': 12 'prefix': 'sum' 13 'body': 'sum($1) ($2)$3'