1
0

Add elseif keyword

Fixes #1
This commit is contained in:
Jip J. Dekker 2018-01-24 11:41:08 +11:00
parent 7707fa5690
commit c7584aeeda
No known key found for this signature in database
GPG Key ID: 9CB1B58997DD0D58
3 changed files with 5 additions and 2 deletions

View File

@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## [0.8.1] - 2018-01-24
### Fixed
- Added the forgotten `elseif` keyword
## [0.8.0] - 2017-11-17 ## [0.8.0] - 2017-11-17
### Removed ### Removed
- Moved the linting functionality into a seperate package, [`linter-mzn`](https://github.com/Dekker1/linter-mzn). With eyes to the future and possibility for a full MiniZinc Suite in Atom. - Moved the linting functionality into a seperate package, [`linter-mzn`](https://github.com/Dekker1/linter-mzn). With eyes to the future and possibility for a full MiniZinc Suite in Atom.

View File

@ -40,7 +40,7 @@
} }
{ {
'match': '\\b(for|forall|if|then|else|endif|where)\\b' 'match': '\\b(for|forall|if|then|elseif|else|endif|where)\\b'
'name': 'keyword.control.mzn' 'name': 'keyword.control.mzn'
} }

View File

@ -7,5 +7,4 @@
"engines": { "engines": {
"atom": ">=1.0.0 <2.0.0" "atom": ">=1.0.0 <2.0.0"
} }
}
} }