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

Removes duplicate operators and assert statement

+2 -7
+2 -7
grammars/mzn.cson
··· 31 31 } 32 32 33 33 { 34 - 'match': '\\b(ann|annotation|any|assert|constraint|function|in|include|list|of|op|output|minimize|maximize|par|predicate|record|satisfy|solve|test|type|var)\\b' 34 + 'match': '\\b(ann|annotation|any|constraint|function|in|include|list|of|op|output|minimize|maximize|par|predicate|record|satisfy|solve|test|type|var)\\b' 35 35 'name': 'keyword.control.mzn' 36 36 } 37 37 ··· 105 105 } 106 106 107 107 { 108 - 'match': '\\b(not|\\+|-)\\b' 109 - 'name': 'keyword.operator.math.mzn' 110 - } 111 - 112 - { 113 - 'match': '\\b(<->|->|<-|\\\\/|xor|/\\\\)\\b' 108 + 'match': '\\b(not|<->|->|<-|\\\\/|xor|/\\\\)\\b' 114 109 'name': 'keyword.operator.logical.mzn' 115 110 } 116 111