forked from Kronuz/TextMarker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.sublime-commands
148 lines (148 loc) · 4.38 KB
/
Default.sublime-commands
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
[
{
"caption": "Preferences: Text Marker Settings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/Text Marker/Text Marker.sublime-settings",
"default": "/*\n\tText Marker user settings in here override the default\n*/\n{\n\t\"user\": {\n\t\t$0\n\t}\n}\n"}
},
{
"caption": "Text Marker: Highlight Selection Color (aqua)",
"command": "text_marker",
"args": {"color": "aqua"}
},
{
"caption": "Text Marker: Highlight Selection Color (cyan)",
"command": "text_marker",
"args": {"color": "#5cc5e5"}
},
{
"caption": "Text Marker: Highlight Selection Color (deepskyblue)",
"command": "text_marker",
"args": {"color": "deepskyblue"}
},
{
"caption": "Text Marker: Highlight Selection Color (blue)",
"command": "text_marker",
"args": {"color": "#007bff"}
},
{
"caption": "Text Marker: Highlight Selection Color (indigo)",
"command": "text_marker",
"args": {"color": "#6610f2"}
},
{
"caption": "Text Marker: Highlight Selection Color (purple)",
"command": "text_marker",
"args": {"color": "#6f42c1"}
},
{
"caption": "Text Marker: Highlight Selection Color (deeppink)",
"command": "text_marker",
"args": {"color": "deeppink"}
},
{
"caption": "Text Marker: Highlight Selection Color (pink)",
"command": "text_marker",
"args": {"color": "#e83e8c"}
},
{
"caption": "Text Marker: Highlight Selection Color (indianred)",
"command": "text_marker",
"args": {"color": "#e6635b"}
},
{
"caption": "Text Marker: Highlight Selection Color (red)",
"command": "text_marker",
"args": {"color": "red"}
},
{
"caption": "Text Marker: Highlight Selection Color (coral)",
"command": "text_marker",
"args": {"color": "coral"}
},
{
"caption": "Text Marker: Highlight Selection Color (orangered)",
"command": "text_marker",
"args": {"color": "orangered"}
},
{
"caption": "Text Marker: Highlight Selection Color (darkorange)",
"command": "text_marker",
"args": {"color": "darkorange"}
},
{
"caption": "Text Marker: Highlight Selection Color (orange)",
"command": "text_marker",
"args": {"color": "#fd7e14"}
},
{
"caption": "Text Marker: Highlight Selection Color (yellow)",
"command": "text_marker",
"args": {"color": "#f2ba49"}
},
{
"caption": "Text Marker: Highlight Selection Color (gold)",
"command": "text_marker",
"args": {"color": "gold"}
},
{
"caption": "Text Marker: Highlight Selection Color (palegoldenrod)",
"command": "text_marker",
"args": {"color": "palegoldenrod"}
},
{
"caption": "Text Marker: Highlight Selection Color (green)",
"command": "text_marker",
"args": {"color": "#80c455"}
},
{
"caption": "Text Marker: Highlight Selection Color (springgreen)",
"command": "text_marker",
"args": {"color": "springgreen"}
},
{
"caption": "Text Marker: Highlight Selection Color (seagreen)",
"command": "text_marker",
"args": {"color": "seagreen"}
},
{
"caption": "Text Marker: Highlight Selection Color (teal)",
"command": "text_marker",
"args": {"color": "#20c997"}
},
{
"caption": "Text Marker: Highlight Selection Custom Color",
"command": "text_marker",
"args": {"color": "<input>"}
},
{
"caption": "Text Marker: Select All",
"command": "text_marker",
"args": {"color": "<select>"}
},
{
"caption": "Text Marker: Reset",
"command": "text_marker_reset"
},
{
"caption": "Text Marker: Enable Live Highlight",
"command": "text_marker_toggle_setting", "args":
{
"setting": "live",
"value": true
}
},
{
"caption": "Text Marker: Disable Live Highlight",
"command": "text_marker_toggle_setting", "args":
{
"setting": "live",
"value": false
}
},
{
"caption": "Text Marker: Restore Color Scheme",
"command": "text_marker_restore",
}
]