light_plus.json 997 字节
Newer Older
1 2
{
	"name": "Light+",
3
	"include": "./light_vs.json",
4 5 6
	"settings": [
		{
			"name": "Types declaration and references",
7 8 9 10 11 12 13 14
			"scope": [
				"meta.return-type",
				"support.type",
				"entity.name.class",
				"entity.name.type",
				"storage.type.cs",
				"storage.type.java"
			],
15 16 17 18
			"settings": {
				"foreground": "#267f99"
			}
		},
19 20 21 22 23 24 25 26 27 28 29
		{
			"name": "Types declaration and references, TS grammar specific",
			"scope": [
				"meta.return.type",
				"meta.type.cast.expr",
				"meta.type.new.expr"
			],
			"settings": {
				"foreground": "#267f99"
			}
		},
30 31
		{
			"name": "Function declarations",
32
			"scope": [
33
				"entity.name.function"
34
			],
35 36 37 38 39 40 41 42 43 44 45 46 47
			"settings": {
				"foreground": "#795E26"
			}
		},
		{
			"name": "Control flow keywords",
			"scope": "keyword.control",
			"settings": {
				"foreground": "#AF00DB"
			}
		},
		{
			"name": "Parameter name",
48 49 50 51 52
			"scope": [
				"variable.parameter",
				"variable",
				"variable.name"
			],
53 54 55 56 57 58
			"settings": {
				"foreground": "#001080"
			}
		}
	]
}