-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathContext.sublime-menu
More file actions
126 lines (126 loc) · 2.64 KB
/
Context.sublime-menu
File metadata and controls
126 lines (126 loc) · 2.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
[
{
"caption": "-"
},
{
"id": "ColorConvert",
"caption": "ColorConvert",
"children": [
{
"caption": "Convert Selected Section",
"command": "color_convert",
"args": {"value": "", "isSelect": true}
},
{
"caption": "Convert Selected Section ->",
"children":[
{
"caption": "RGB",
"command": "color_convert",
"args": {"value": "rgb", "isSelect": true},
"checked": true
},
{
"caption": "RGBA",
"command": "color_convert",
"args": {"value": "rgba", "isSelect": true}
},
{
"caption": "HEX",
"command": "color_convert",
"args": {"value": "hex", "isSelect": true}
},
{
"caption": "HSL",
"command": "color_convert",
"args": {"value": "hsl", "isSelect": true}
},
{
"caption": "HSLA",
"command": "color_convert",
"args": {"value": "hsla", "isSelect": true}
},
{
"caption": "CMYK",
"command": "color_convert",
"args": {"value": "cmyk", "isSelect": true}
},
{
"caption": "HSV",
"command": "color_convert",
"args": {"value": "hsv", "isSelect": true}
}
]
},
{
"caption": "Convert Selected ColorName<->HEX",
"children": [
{
"caption": "ColorName -> HEX",
"command": "color_convert_name_to_hex"
},
{
"caption": "HEX -> ColorName",
"command": "color_convert_hex_to_name"
}
]
},
{
"caption": "-"
},
{
"caption": "Convert All",
"command": "color_convert",
"args": {"value": "", "isSelect": false}
},
{
"caption": "Convert All ->",
"children":[
{
"caption": "RGB",
"command": "color_convert",
"args": {"value": "rgb", "isSelect": false},
"checked": true
},
{
"caption": "RGBA",
"command": "color_convert",
"args": {"value": "rgba", "isSelect": false}
},
{
"caption": "HEX",
"command": "color_convert",
"args": {"value": "hex", "isSelect": false}
},
{
"caption": "HSL",
"command": "color_convert",
"args": {"value": "hsl", "isSelect": false}
},
{
"caption": "HSLA",
"command": "color_convert",
"args": {"value": "hsla", "isSelect": false}
},
{
"caption": "CMYK",
"command": "color_convert",
"args": {"value": "cmyk", "isSelect": false}
},
{
"caption": "HSV",
"command": "color_convert",
"args": {"value": "hsv", "isSelect": false}
}
]
},
{
"caption": "Convert All Hex->ColorName",
"command": "color_convert_all_hex_to_name"
}
]
},
{
"caption": "-"
}
]