Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- Add support for `\cases` syntax ([#218](https://github.com/JustusAdam/language-haskell/pull/218)), thanks to [@mixphix](https://github.com/mixphix)
- Fix bare unit type applications ([#225](https://github.com/JustusAdam/language-haskell/issue/225)), thanks to [@mixphix](https://github.com/mixphix)
- Fix qualified type operators in export lists ([#191](https://github.com/JustusAdam/language-haskell/issue/191)), thanks to [@mixphix]
- Add support for `elif` in Cabal files (`cabal-version` >= 2.2) ([#236](https://github.com/JustusAdam/language-haskell/pull/236))

## 3.6.0 - 15.03.2022

Expand Down
2 changes: 1 addition & 1 deletion syntaxes/cabal.YAML-tmLanguage
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ patterns:
'1': {name: entity.name.section.cabal}
'3': {name: entity.name.function.cabal}
- name: keyword.control.cabal
match: '^[ \t]*(if|else)'
match: '^[ \t]*(if|elif|else)'
- name: comment.line.double-dash
match: '^\s*--.*$'
scopeName: source.cabal
Expand Down
Loading