Linguist Syntax
A collection of high quality and well-maintained syntax definations that used by GitHub.com.
Labels language syntax
Details
Installs
- Total 147
- Win 74
- Mac 42
- Linux 31
Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | Oct 5 | Oct 4 | Oct 3 | Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | Sep 19 | Sep 18 | Sep 17 | Sep 16 | Sep 15 | Sep 14 | Sep 13 | Sep 12 | Sep 11 | Sep 10 | Sep 9 | Sep 8 | Sep 7 | Sep 6 | Sep 5 | Sep 4 | Sep 3 | Sep 2 | Sep 1 | Aug 31 | Aug 30 | Aug 29 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Sublime Linguist Syntax
A collection of high quality and well-maintained syntax definations that used by GitHub.com.
How to generate(update) syntaxes?
- Install Deno.
- Clone this repo.
- Run
deno run ./scripts/generate.ts <path-to-store-syntaxes>
. Normally<path-to-store-syntaxes>
should be./syntaxes
, but you can change it to whatever you want if you wish. - Done.
When running generate.ts
, thanks to the Deno's permission API, the script can not access any network and disks without your permission. So there will be an interactive prompt to ask permissions for:
- network access to
github.com
,api.github.com
,objects.githubusercontent.com
,raw.githubusercontent.com
, for download linguist. - write and read permissions to
/tmp
, in order to store the downloaded assets and process them. - write permission to
<path-to-store-syntaxes>
If you don't like prompts, you can pass them in the CLI arguments like this:
deno run --allow-net=github.com,api.github.com,objects.githubusercontent.com,raw.githubusercontent.com --allow-read=/tmp --allow-write=/tmp,<path-to-store-syntaxes> scripts/generate.ts <path-to-store-syntaxes>