Syntax highlighting for the Dhall configuration language.
Based on the VS Code Dhall syntax higlighting package (which in turn was heavily influenced by the now non-existant Sublime Dhall package).
This repository is just for the convenience of Sublime Text users, so that they can install Dhall syntax higlighting using Package Control. The real development should take place in https://github.com/dhall-lang/vscode-language-dhall.
Note that the syntax definition is a Textmate language grammar file (a .tmLanguage
file). We do not provide a .sublime-syntax
file (yet?).
The original VS Code package is MIT-licensed. Any modifications to the original code are also MIT-licensed. See LICENSE.
The provided dhall.tmLanguage
file is the result of a simple conversion of the VS Code syntax highlighting definition from JSON to PLIST.
To perform the conversion manually (using VS Code):
dhall.tmLanguage.json
and open it in VS Code.Ctrl
+Shift
+P
, choose Convert to tmLanguage PLIST file.comment
and fileTypes
sections: <key>comment</key>
<string>Syntax highlighting for Dhall. MIT-licensed, see: https://github.com/kukimik/dhall-sublime-syntax-highlighting/blob/master/LICENSE.</string>
<key>fileTypes</key>
<array>
<string>dhall</string>
</array>