语言语法
由GitHub.com使用的高质量且维护良好的语法定义集。
标签 语言语法
详细信息
安装次数
- 总计 134
- Win 66
- Mac 37
- Linux 31
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 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 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 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 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 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 |
README
Sublime Linguist Syntax
由GitHub.com使用的,集成了高质量且维护良好的语法定义集。
如何生成(更新)语法?
- 安装Deno。
- 克隆此仓库。
- 运行
deno run ./scripts/generate.ts <path-to-store-syntaxes>
。通常<path-to-store-syntaxes>
应该是./syntaxes
,但您可以根据需要更改为任何您想要的。 - 完成。
在运行 generate.ts
时,由于Deno的权限API,脚本在没有您许可的情况下不能访问任何网络和磁盘。因此将出现交互式提示,请求
- 访问
github.com
、api.github.com
、objects.githubusercontent.com
、raw.githubusercontent.com
的网络访问权限,以下载 linguist。 - 写入和读取权限到:
/tmp
,以便存储下载的资产并对它们进行处理。 - 写入权限到:
<path-to-store-syntaxes>
如果您不喜欢提示,您可以在CLI参数中这样传递它们
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>