forked from subhaze/CSS-Extended
-
Notifications
You must be signed in to change notification settings - Fork 0
/
css_style_completions.sublime-settings
199 lines (197 loc) · 5.29 KB
/
css_style_completions.sublime-settings
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
{
// List of folders that you want to include for completion results.
// Only .css/.less/.scss files will be parsed within them.
"load_external_files": [],
"save_cache_to_file": true,
"css_completion_scope": "meta.selector.css",
"html_attribute_scope": "string.quoted.double.html, string.quoted.single.html, string.quoted.jade",
// attempts to find <link/>'d style sheets in 'emmet_scoped' scoped files on save
"index_linked_style_sheets": true,
// returns class/id completions when typing out emmet expressions
"use_emmet": true,
// 'use_emmet' must be enabled for this to work correctly.
// Adds the text.html scope with chars . and # to auto trigger the completion list
"auto_trigger_emmet_completions": true,
"emmet_scope": "text.html - source.js, source.cshtml, source.jade",
"css_extension": [".css",".less",".scss"],
// List from http://www.awayback.com/revised-font-stack/
"font_list": [
// serif
"Garamond, Baskerville, 'Baskerville Old Face', 'Hoefler Text', 'Times New Roman', serif",
"'Lucida Bright', Georgia, serif",
"Palatino, 'Palatino Linotype', 'Palatino LT STD', 'Book Antiqua', Georgia, serif",
"'Big Caslon', 'Book Antiqua', 'Palatino Linotype', Georgia, serif",
"Didot, 'Didot LT STD', 'Hoefler Text', Garamond, 'Times New Roman', serif",
"Baskerville, 'Baskerville old face', 'Hoefler Text', Garamond, 'Times New Roman', serif",
"'Hoefler Text', 'Baskerville old face', Garamond, 'Times New Roman', serif",
"'Bodoni MT', Didot, 'Didot LT STD', 'Hoefler Text', Garamond, 'Times New Roman', serif",
"'Goudy Old Style', Garamond, 'Big Caslon', 'Times New Roman', serif",
"Constantia, Palatino, 'Palatino Linotype', 'Palatino LT STD', Georgia, serif",
"Cambria, Georgia, serif",
"'Book Antiqua', Palatino, 'Palatino Linotype', 'Palatino LT STD', Georgia, serif",
// sans-serif
"Optima, Segoe, 'Segoe UI', Candara, Calibri, Arial, sans-serif",
"Futura, 'Trebuchet MS', Arial, sans-serif",
"'Gill Sans', 'Gill Sans MT', Calibri, sans-serif",
"'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Tahoma, sans-serif",
"'Helvetica Neue', Helvetica, Arial, sans-serif",
"Verdana, Geneva, sans-serif",
"'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Geneva, Verdana, sans-serif",
"Geneva, Tahoma, Verdana, sans-serif",
"Segoe, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif",
"Candara, Calibri, Segoe, 'Segoe UI', Optima, Arial, sans-serif",
"Calibri, Candara, Segoe, 'Segoe UI', Optima, Arial, sans-serif",
"'Franklin Gothic Medium', Arial, sans-serif",
"Tahoma, Geneva, Verdana, sans-serif"
],
"pseudo_selector_list": [
"after",
"before",
"checked",
"default",
"disabled",
"empty",
"enabled",
"first",
"first-child",
"first-letter",
"first-line",
"first-of-type",
"focus",
"fullscreen",
"hover",
"indeterminate",
"invalid",
"lang",
"last-child",
"last-of-type",
"left",
"link",
"not",
"nth-child",
"nth-last-child",
"nth-last-of-type",
"nth-of-type",
"only-child",
"only-type-of",
"optional",
"read-only",
"read-write",
"required",
"right",
"root",
"scope",
"target",
"valid",
"visited"
],
"element_list": [
"html",
"body",
"section",
"nav",
"article",
"aside",
"h1",
"h2",
"h3",
"h4",
"h5",
"h6",
"header",
"footer",
"address",
"main",
"p",
"hr",
"pre",
"blockquote",
"ol",
"ul",
"li",
"dl",
"dt",
"dd",
"figure",
"figcaption",
"div",
"a",
"em",
"strong",
"small",
"s",
"cite",
"q",
"dfn",
"abbr",
"itl",
"data",
"time",
"atetim",
"code",
"var",
"samp",
"kbd",
"sub",
"sup",
"b",
"u",
"mark",
"ruby",
"rt",
"rp",
"bdi",
"bdo",
"span",
"las",
"an",
"i",
"br",
"wbr",
"ins",
"del",
"img",
"iframe",
"embed",
"object",
"param",
"video",
"audio",
"source",
"track",
"canvas",
"map",
"area",
"svg",
"math",
"table",
"caption",
"colgroup",
"col",
"tbody",
"thead",
"tfoot",
"tr",
"td",
"th",
"form",
"fieldset",
"legend",
"label",
"input",
"button",
"select",
"datalist",
"optgroup",
"option",
"textarea",
"keygen",
"output",
"progress",
"meter",
"details",
"summary",
"menuitem",
"menu"
]
}