3.6 KiB
Adding new builtin languages for syntax highlighting
Should you find that a particular syntax is not available within bat and think it should be included in bat by default, you can follow the instructions outlined below.
bat uses the excellent syntect library to highlight source
code. As a basis, syntect uses Sublime Text syntax definitions
in the .sublime-syntax format.
Important: Before proceeding, verify that the syntax you wish to add meets the criteria for inclusion.
-
Find a Sublime Text syntax for the given language, preferably in a separate Git repository which can be included as a submodule (under
assets/syntaxes). -
If the Sublime Text syntax is only available as a
.tmLanguagefile, open the file in Sublime Text and convert it to a.sublime-syntaxfile via Tools -> Developer -> New Syntax from XXX.tmLanguage.... Save the new file in theassets/syntaxesfolder. -
Run the
assets/create.shscript. It callsbat cache --buildto parse all available.sublime-syntaxfiles and serialize them to asyntaxes.binfile (in this folder). -
Re-compile
bat. At compilation time, thesyntaxes.binfile will be stored inside thebatbinary. -
Use
bat --list-languagesto check if the new languages are available. -
If you send a pull request with your changes, please do not include the changed
syntaxes.binfile. A new binary cache file will be created once before every new release ofbat.
Troubleshooting
Make sure that the local cache does not interfere with the internally stored syntaxes and
themes (bat cache --clear).
Criteria for inclusion of new syntaxes
- More than 10,000 downloads on packagecontrol.io/
Manual modifications
The following files have been manually modified after converting from a .tmLanguage file:
Apache.sublime_syntax=> removed.confand.CONFfile types.Dart.sublime-syntax=> removed#regex.dartinclude.INI.sublime-syntax=> added.hgrc,hgrc, anddesktopfile types and support for comments after section headersOrg mode.sublime-syntax=> removedtaskfile type.SML.sublime_syntax=> removedmlfile type.Robot.sublime_syntax=> changed name to "Robot Framework", added.resourceextension
Non-submodule additions
Assembly (x86_64)has been manually added from https://github.com/13xforever/x86-assembly-textmate-bundle due togit clonerecursion problemsNim.sublime-syntaxhas been added manually from https://github.com/getzola/zola/blob/master/sublime_syntaxes/Nim.sublime-syntax as there was no suitable Git repository for it. The original syntax seems to originate from https://github.com/Varriount/NimLimeRego.sublime-syntaxhas been added manually from https://github.com/open-policy-agent/opa/blob/master/misc/syntax/sublime/rego.sublime-syntax as it is not kept in a standalone repository. The file is generated from https://github.com/open-policy-agent/opa/blob/master/misc/syntax/textmate/Rego.tmLanguageSML.sublime_syntaxhas been added manually from https://github.com/seanjames777/SML-Language-Definitiona as it is not kept in a standalone repository. The file generated is from https://github.com/seanjames777/SML-Language-Definition/blob/master/sml.tmLanguageCabal.sublime_syntaxhas been added manually from https://github.com/SublimeHaskell/SublimeHaskell/ - we don't want to include the whole submodule because it includes other syntaxes ("Haskell improved") as well.