├── .gitignore
├── LICENSE.md
├── README.md
├── package.json
├── settings
├── html.completion.cson
├── icons.fontawesome.cson
├── icons.glyphicons.cson
└── icons.octicons.cson
└── snippets
├── components.cson
├── grid.cson
├── templates.cson
└── typography.cson
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | npm-debug.log
3 | node_modules
4 |
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
1 | Copyright (c) 2014 webBox.io
2 |
3 | Permission is hereby granted, free of charge, to any person obtaining
4 | a copy of this software and associated documentation files (the
5 | "Software"), to deal in the Software without restriction, including
6 | without limitation the rights to use, copy, modify, merge, publish,
7 | distribute, sublicense, and/or sell copies of the Software, and to
8 | permit persons to whom the Software is furnished to do so, subject to
9 | the following conditions:
10 |
11 | The above copyright notice and this permission notice shall be
12 | included in all copies or substantial portions of the Software.
13 |
14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Bootstrap 3 Support for Atom
2 |
3 | Provides [Bootstrap 3][1] classes and HTML tags with autocompletion features.
4 |
5 | Install:
6 | ```bash
7 | apm install atom-bootstrap3
8 | ```
9 |
10 | Key Features:
11 |
12 | - Supports autocompletion of all helper classes in JavaScript, CSS and HTML
13 | - Snippet support for all components.
14 | - Autocompletion for **Glyphicons**, **Fontawesome** and **Octicons**
15 |
16 | An example with [HTML Preview][3]
17 |
18 | 
19 |
20 | ## Templates
21 |
22 | - `html-`: Generates Basic HTML Template
23 | - `html-min`: Generates Basic HTML Template without comments
24 | - `html-oi`: Generates Basic HTML Template (replace `fontawesome` in favor of `octicons`)
25 |
26 | ## Components
27 |
28 | All components also have autocompletion support for extra options.
29 |
30 | ### Icons
31 |
32 | The plugin has Glyphicon and Fontawesome support.
33 |
34 | - `icon`: Generates glyphicon icon snippet
35 | - `fa`: Generates fontawesome icon snippet
36 | - `oi`: Generates octicon snippet
37 |
38 | ### Alert
39 |
40 | - `alert`
41 | - `alert-link`
42 | - `close`
43 |
44 | ### Badge
45 |
46 | - `badge`
47 |
48 | ### Breadcrumb
49 |
50 | - `breadcrumb`
51 | - `item`
52 |
53 | ### Buttons
54 |
55 | - `btn`
56 | - `btn-group`
57 | - `btn-group-vertical`
58 | - `btn-toolbar`
59 | - `btn-modal`
60 |
61 | ### Menus and Dropdowns
62 |
63 | - `dropdown`
64 | - `menudivider`
65 | - `menuheader`
66 | - `menuitem`
67 |
68 | ### Forms
69 |
70 | - `form-group`
71 | - `input-group`
72 |
73 | ### Labels
74 |
75 | - `label-`
76 |
77 | ### Lists
78 |
79 | - `list-group`
80 | - `list-inline`
81 | - `list-item`
82 | - `list-unstyled`
83 |
84 | ### Tabs and Navigations
85 |
86 | - `nav-pills`
87 | - `nav-tabs`
88 | - `nav-`
89 | - `navbar`: Generates standard navbar template
90 | - `navbar-drop`: Generates navbar dropdown item
91 |
92 | ### Other Components
93 |
94 | - `pager`
95 | - `page-header`
96 | - `pagination`
97 | - `panel`
98 | - `progress-`
99 | - `table-`
100 | - `thumbnail`
101 | - `well`
102 | - `jumbotron`
103 |
104 | ## JavaScript Components
105 |
106 | - `modal`: Generates modal HTML
107 | - `btn-modal`: Generates modal trigger button HTML
108 | - `accordion`: Generates accordion HTML
109 | - `accordion-item`: Generates accordion item HTML
110 | - `carousel`: Generates carousel HTML
111 | - `carousel`: Generates carousel item HTML
112 | - `navbar`: Generates navbar HTML
113 | - `navbar-dropdown`: Generates navbar dropdown item
114 |
115 | ## Grid
116 |
117 | - `row`: Generates column container: `
`
118 | - `col-`: Generates column: ``
119 | - `col-lg`: Generates large column: ``
120 | - `col-md`: Generates medium column: ``
121 | - `col-sm`: Generates small column: ``
122 | - `col-xs`: Generates extra small column: ``
123 | - `con`: Generates container: ``
124 | - `conf`: Generates fluid container: ``
125 |
126 | ## Typography
127 |
128 | - `lead`: Lead class ``
129 | - `h1-`: Heading 1 `
Text {optional}
`
130 | - `h2-`: Heading 2 `Text {optional}
`
131 | - `h3-`: Heading 3 `Text {optional}
`
132 | - `h4-`: Heading 4 `Text {optional}
`
133 | - `h5-`: Heading 5 `Text {optional}
`
134 | - `h6-`: Heading 6 `Text {optional}
`
135 | - `initialism`: Generates "initialism" text
136 | - `blockquote-reverse`: Generates reverse blockquote
137 | - `dl-horizontal`
138 |
139 | ### Notes
140 | - Snippet funcionality has [some bugs][2], I hope it will be fixed by Atom team.
141 | - More to come :)
142 |
143 | [1]: http://getbootstrap.com/
144 | [2]: https://github.com/atom/snippets/issues/15
145 | [3]: http://atom.io/packages/atom-html-preview
146 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "atom-bootstrap3",
3 | "version": "1.2.12",
4 | "description": "Bootstrap 3 Support with snippets and autocompletion. Supports Glyphicons and Fontawesome",
5 | "activationCommands": {
6 | "bootstrap": "toggle"
7 | },
8 | "repository": {
9 | "type": "git",
10 | "url": "git+https://github.com/f/atom-bootstrap3.git"
11 | },
12 | "license": "MIT",
13 | "engines": {
14 | "atom": ">0.50.0"
15 | },
16 | "dependencies": {},
17 | "readme": "# Bootstrap 3 Support for Atom\n\nProvides [Bootstrap 3][1] classes and HTML tags with autocompletion features.\n\nInstall:\n```bash\napm install atom-bootstrap3\n```\n\nKey Features:\n\n - Supports autocompletion of all helper classes in JavaScript, CSS and HTML\n - Snippet support for all components.\n - Autocompletion for **Glyphicons**, **Fontawesome** and **Octicons**\n\nAn example with [HTML Preview][3]\n\n\n\n## Templates\n\n - `html-`: Generates Basic HTML Template\n - `html-min`: Generates Basic HTML Template without comments\n - `html-oi`: Generates Basic HTML Template (replace `fontawesome` in favor of `octicons`)\n\n## Components\n\nAll components also have autocompletion support for extra options.\n\n### Icons\n\nThe plugin has Glyphicon and Fontawesome support.\n\n - `icon`: Generates glyphicon icon snippet\n - `fa`: Generates fontawesome icon snippet\n - `oi`: Generates octicon snippet\n\n### Alert\n\n - `alert`\n - `alert-link`\n - `close`\n\n### Badge\n\n - `badge`\n\n### Breadcrumb\n\n - `breadcrumb`\n - `item`\n\n### Buttons\n\n - `btn`\n - `btn-group`\n - `btn-group-vertical`\n - `btn-toolbar`\n - `btn-modal`\n\n### Menus and Dropdowns\n\n - `dropdown`\n - `menudivider`\n - `menuheader`\n - `menuitem`\n\n### Forms\n\n - `form-group`\n - `input-group`\n\n### Labels\n\n - `label-`\n\n### Lists\n\n - `list-group`\n - `list-inline`\n - `list-item`\n - `list-unstyled`\n\n### Tabs and Navigations\n\n - `nav-pills`\n - `nav-tabs`\n - `nav-`\n - `navbar`: Generates standard navbar template\n - `navbar-drop`: Generates navbar dropdown item\n\n### Other Components\n\n - `pager`\n - `page-header`\n - `pagination`\n - `panel`\n - `progress-`\n - `table-`\n - `thumbnail`\n - `well`\n - `jumbotron`\n\n## JavaScript Components\n\n - `modal`: Generates modal HTML\n - `btn-modal`: Generates modal trigger button HTML\n - `accordion`: Generates accordion HTML\n - `accordion-item`: Generates accordion item HTML\n - `carousel`: Generates carousel HTML\n - `carousel`: Generates carousel item HTML\n - `navbar`: Generates navbar HTML\n - `navbar-dropdown`: Generates navbar dropdown item\n\n## Grid\n\n - `row`: Generates column container: ``\n - `col-`: Generates column: ``\n - `col-lg`: Generates large column: ``\n - `col-md`: Generates medium column: ``\n - `col-sm`: Generates small column: ``\n - `col-xs`: Generates extra small column: ``\n - `con`: Generates container: ``\n - `conf`: Generates fluid container: ``\n\n## Typography\n\n- `lead`: Lead class ``\n- `h1-`: Heading 1 `
Text {optional}
`\n- `h2-`: Heading 2 `Text {optional}
`\n- `h3-`: Heading 3 `Text {optional}
`\n- `h4-`: Heading 4 `Text {optional}
`\n- `h5-`: Heading 5 `Text {optional}
`\n- `h6-`: Heading 6 `Text {optional}
`\n- `initialism`: Generates \"initialism\" text\n- `blockquote-reverse`: Generates reverse blockquote\n- `dl-horizontal`\n\n### Notes\n- Snippet funcionality has [some bugs][2], I hope it will be fixed by Atom team.\n- More to come :)\n\n[1]: http://getbootstrap.com/\n[2]: https://github.com/atom/snippets/issues/15\n[3]: http://atom.io/packages/atom-html-preview\n",
18 | "readmeFilename": "README.md",
19 | "bugs": {
20 | "url": "https://github.com/f/atom-bootstrap3/issues"
21 | },
22 | "homepage": "https://github.com/f/atom-bootstrap3#readme",
23 | "_id": "atom-bootstrap3@1.2.11",
24 | "_shasum": "dc10409f567d922da6ba45e0968d2d8359ee4902",
25 | "_resolved": "file:../d-11581-9080-9dii1y/package.tgz",
26 | "_from": "../d-11581-9080-9dii1y/package.tgz",
27 | "_atomModuleCache": {
28 | "version": 1,
29 | "dependencies": [],
30 | "extensions": {
31 | ".json": [
32 | "package.json"
33 | ]
34 | },
35 | "folders": []
36 | }
37 | }
38 |
--------------------------------------------------------------------------------
/settings/html.completion.cson:
--------------------------------------------------------------------------------
1 | '.text.html, .text.css, .source.js':
2 | 'editor':
3 | 'completions': [
4 |
5 | # Snippets
6 | 'html-'
7 | 'html-min'
8 | 'html-oi'
9 | 'icon'
10 | 'fa'
11 | 'oi'
12 | 'btn'
13 | 'dropdown'
14 | 'menuitem'
15 | 'menuheader'
16 | 'menudivider'
17 | 'btn-group'
18 | 'btn-group-vertical'
19 | 'btn-toolbar'
20 | 'input-group'
21 | 'nav-tabs'
22 | 'item'
23 | 'nav-pills'
24 | 'navbar'
25 | 'breadcrumb'
26 | 'pagination'
27 | 'pager'
28 | 'label-'
29 | 'badge'
30 | 'jumbotron'
31 | 'page-header'
32 | 'thumbnail'
33 | 'alert'
34 | 'close'
35 | 'alert-link'
36 | 'progress'
37 | 'list-group'
38 | 'list-item'
39 | 'panel'
40 | 'well'
41 | 'con'
42 | 'conf'
43 | 'row'
44 | 'col-'
45 | 'col-xs'
46 | 'col-sm'
47 | 'col-md'
48 | 'col-lg'
49 | 'lead'
50 | 'initialism'
51 | 'blockquote-reverse'
52 | 'list-unstyled'
53 | 'list-inline'
54 | 'dl-horizontal'
55 | 'table-'
56 | 'form-group'
57 | 'h1-'
58 | 'h2-'
59 | 'h3-'
60 | 'h4-'
61 | 'h5-'
62 | 'h6-'
63 | 'accordion'
64 | 'accordion-item'
65 | 'carousel'
66 | 'carousel-item'
67 | 'navbar-dropdown'
68 | 'nav-'
69 |
70 | # Classes
71 | 'navbar'
72 | 'table'
73 | 'btn'
74 | 'caret'
75 | 'dropup'
76 | 'label'
77 | 'table-bordered'
78 | 'table-condensed'
79 | 'table-bordered'
80 | 'table-striped'
81 | 'table-responsive'
82 | 'table-hover'
83 | 'active'
84 | 'info'
85 | 'warning'
86 | 'danger'
87 | 'form-control'
88 | 'radio'
89 | 'checkbox'
90 | 'radio-inline'
91 | 'checkbox-inline'
92 |
93 | 'img-responsive'
94 | 'thumbnail'
95 | 'carousel-inner'
96 | 'item'
97 | 'img-rounded'
98 | 'img-thumbnail'
99 | 'img-circle'
100 | 'sr-only'
101 | 'h1'
102 | 'h2'
103 | 'h3'
104 | 'h4'
105 | 'h5'
106 | 'h6'
107 | 'small'
108 | 'lead'
109 | 'text-left'
110 | 'text-right'
111 | 'text-center'
112 | 'text-justify'
113 | 'text-muted'
114 | 'text-primary'
115 | 'text-success'
116 | 'text-info'
117 | 'text-warning'
118 | 'text-danger'
119 | 'bg-primary'
120 | 'bg-success'
121 | 'bg-info'
122 | 'bg-warning'
123 | 'bg-danger'
124 | 'page-header'
125 | 'list-unstyled'
126 | 'list-inline'
127 | 'dl-horizontal'
128 | 'initialism'
129 | 'blockquote-reverse'
130 | 'pull-right'
131 | 'pre-scrollable'
132 | 'container'
133 | 'container-fluid'
134 | 'row'
135 |
136 | 'input-sm'
137 | 'input-lg'
138 | 'has-feedback'
139 | 'form-control-feedback'
140 | 'has-success'
141 | 'help-block'
142 | 'control-label'
143 | 'input-group'
144 | 'input-group-addon'
145 | 'form-inline'
146 | 'form-horizontal'
147 |
148 | 'btn'
149 | 'disabled'
150 | 'btn-default'
151 | 'btn-primary'
152 | 'btn-success'
153 | 'btn-info'
154 | 'btn-warning'
155 | 'btn-danger'
156 | 'btn-link'
157 |
158 | 'btn-lg'
159 | 'btn-group-lg'
160 | 'btn-sm'
161 | 'btn-group-sm'
162 | 'btn-xs'
163 | 'btn-group-xs'
164 | 'btn-block'
165 |
166 | 'fade'
167 | 'in'
168 | 'collapse'
169 | 'collapsing'
170 | 'glyphicon'
171 | 'dropdown'
172 | 'dropdown-menu'
173 | 'open'
174 | 'dropdown-menu-right'
175 | 'dropdown-menu-left'
176 | 'dropdown-header'
177 | 'dropdown-backdrop'
178 | 'navbar-fixed-bottom'
179 | 'navbar-fixed-top'
180 | 'navbar-right'
181 | 'btn-group'
182 | 'btn-group-vertical'
183 | 'btn-toolbar'
184 | 'dropdown-toggle'
185 | 'btn-group-justified'
186 | 'input-group'
187 | 'input-group-lg'
188 | 'input-group-sm'
189 | 'input-group-addon'
190 | 'input-group-btn'
191 | 'nav'
192 | 'nav-divider'
193 | 'nav-tabs'
194 | 'nav-justified'
195 | 'nav-pills'
196 | 'nav-stacked'
197 | 'tab-content'
198 | 'tab-pane'
199 | 'navbar'
200 | 'navbar-collapse'
201 | 'navbar-static-top'
202 | 'navbar-brand'
203 | 'navbar-toggle'
204 | 'icon-bar'
205 | 'navbar-nav'
206 | 'navbar-form'
207 | 'navbar-left'
208 | 'navbar-right'
209 | 'navbar-btn'
210 | 'navbar-text'
211 | 'navbar-default'
212 | 'navbar-inverse'
213 | 'navbar-link'
214 |
215 | 'breadcrumb'
216 | 'pagination'
217 | 'pagination-sm'
218 | 'pagination-lg'
219 |
220 | 'pager'
221 | 'next'
222 | 'previous'
223 | 'label'
224 | 'label-default'
225 | 'label-primary'
226 | 'label-success'
227 | 'label-info'
228 | 'label-warning'
229 |
230 | 'badge'
231 | 'list-group-item'
232 | 'alert-dismissible'
233 | 'alert-success'
234 | 'alert-info'
235 | 'alert-warning'
236 | 'alert-danger'
237 | 'progress-bar'
238 | 'progress-striped'
239 | 'progress-bar-success'
240 | 'progress-bar-info'
241 | 'progress-bar-warning'
242 | 'progress-bar-danger'
243 |
244 | 'media'
245 | 'media-object'
246 | 'media-heading'
247 | 'media-list'
248 |
249 | 'list-group-item-success'
250 | 'list-group-item-info'
251 | 'list-group-item-warning'
252 | 'list-group-item-danger'
253 |
254 | 'panel'
255 | 'panel-body'
256 | 'panel-heading'
257 | 'panel-title'
258 | 'panel-footer'
259 | 'panel-group'
260 | 'panel-primary'
261 | 'panel-success'
262 | 'panel-info'
263 | 'panel-warning'
264 | 'panel-danger'
265 |
266 | 'well'
267 | 'well-lg'
268 | 'well-sm'
269 |
270 | 'clearfix'
271 |
272 | 'col-xs-1'
273 | 'col-sm-1'
274 | 'col-md-1'
275 | 'col-lg-1'
276 | 'col-xs-2'
277 | 'col-sm-2'
278 | 'col-md-2'
279 | 'col-lg-2'
280 | 'col-xs-3'
281 | 'col-sm-3'
282 | 'col-md-3'
283 | 'col-lg-3'
284 | 'col-xs-4'
285 | 'col-sm-4'
286 | 'col-md-4'
287 | 'col-lg-4'
288 | 'col-xs-5'
289 | 'col-sm-5'
290 | 'col-md-5'
291 | 'col-lg-5'
292 | 'col-xs-6'
293 | 'col-sm-6'
294 | 'col-md-6'
295 | 'col-lg-6'
296 | 'col-xs-7'
297 | 'col-sm-7'
298 | 'col-md-7'
299 | 'col-lg-7'
300 | 'col-xs-8'
301 | 'col-sm-8'
302 | 'col-md-8'
303 | 'col-lg-8'
304 | 'col-xs-9'
305 | 'col-sm-9'
306 | 'col-md-9'
307 | 'col-lg-9'
308 | 'col-xs-10'
309 | 'col-sm-10'
310 | 'col-md-10'
311 | 'col-lg-10'
312 | 'col-xs-11'
313 | 'col-sm-11'
314 | 'col-md-11'
315 | 'col-lg-11'
316 | 'col-xs-12'
317 | 'col-sm-12'
318 | 'col-md-12'
319 | 'col-lg-12'
320 |
321 | 'col-xs-pull-0'
322 | 'col-sm-pull-0'
323 | 'col-md-pull-0'
324 | 'col-lg-pull-0'
325 | 'col-xs-pull-1'
326 | 'col-sm-pull-1'
327 | 'col-md-pull-1'
328 | 'col-lg-pull-1'
329 | 'col-xs-pull-2'
330 | 'col-sm-pull-2'
331 | 'col-md-pull-2'
332 | 'col-lg-pull-2'
333 | 'col-xs-pull-3'
334 | 'col-sm-pull-3'
335 | 'col-md-pull-3'
336 | 'col-lg-pull-3'
337 | 'col-xs-pull-4'
338 | 'col-sm-pull-4'
339 | 'col-md-pull-4'
340 | 'col-lg-pull-4'
341 | 'col-xs-pull-5'
342 | 'col-sm-pull-5'
343 | 'col-md-pull-5'
344 | 'col-lg-pull-5'
345 | 'col-xs-pull-6'
346 | 'col-sm-pull-6'
347 | 'col-md-pull-6'
348 | 'col-lg-pull-6'
349 | 'col-xs-pull-7'
350 | 'col-sm-pull-7'
351 | 'col-md-pull-7'
352 | 'col-lg-pull-7'
353 | 'col-xs-pull-8'
354 | 'col-sm-pull-8'
355 | 'col-md-pull-8'
356 | 'col-lg-pull-8'
357 | 'col-xs-pull-9'
358 | 'col-sm-pull-9'
359 | 'col-md-pull-9'
360 | 'col-lg-pull-9'
361 | 'col-xs-pull-10'
362 | 'col-sm-pull-10'
363 | 'col-md-pull-10'
364 | 'col-lg-pull-10'
365 | 'col-xs-pull-11'
366 | 'col-sm-pull-11'
367 | 'col-md-pull-11'
368 | 'col-lg-pull-11'
369 | 'col-xs-pull-12'
370 | 'col-sm-pull-12'
371 | 'col-md-pull-12'
372 | 'col-lg-pull-12'
373 |
374 | 'col-xs-push-0'
375 | 'col-sm-push-0'
376 | 'col-md-push-0'
377 | 'col-lg-push-0'
378 | 'col-xs-push-1'
379 | 'col-sm-push-1'
380 | 'col-md-push-1'
381 | 'col-lg-push-1'
382 | 'col-xs-push-2'
383 | 'col-sm-push-2'
384 | 'col-md-push-2'
385 | 'col-lg-push-2'
386 | 'col-xs-push-3'
387 | 'col-sm-push-3'
388 | 'col-md-push-3'
389 | 'col-lg-push-3'
390 | 'col-xs-push-4'
391 | 'col-sm-push-4'
392 | 'col-md-push-4'
393 | 'col-lg-push-4'
394 | 'col-xs-push-5'
395 | 'col-sm-push-5'
396 | 'col-md-push-5'
397 | 'col-lg-push-5'
398 | 'col-xs-push-6'
399 | 'col-sm-push-6'
400 | 'col-md-push-6'
401 | 'col-lg-push-6'
402 | 'col-xs-push-7'
403 | 'col-sm-push-7'
404 | 'col-md-push-7'
405 | 'col-lg-push-7'
406 | 'col-xs-push-8'
407 | 'col-sm-push-8'
408 | 'col-md-push-8'
409 | 'col-lg-push-8'
410 | 'col-xs-push-9'
411 | 'col-sm-push-9'
412 | 'col-md-push-9'
413 | 'col-lg-push-9'
414 | 'col-xs-push-10'
415 | 'col-sm-push-10'
416 | 'col-md-push-10'
417 | 'col-lg-push-10'
418 | 'col-xs-push-11'
419 | 'col-sm-push-11'
420 | 'col-md-push-11'
421 | 'col-lg-push-11'
422 | 'col-xs-push-12'
423 | 'col-sm-push-12'
424 | 'col-md-push-12'
425 | 'col-lg-push-12'
426 |
427 | 'col-xs-offset-0'
428 | 'col-sm-offset-0'
429 | 'col-md-offset-0'
430 | 'col-lg-offset-0'
431 | 'col-xs-offset-1'
432 | 'col-sm-offset-1'
433 | 'col-md-offset-1'
434 | 'col-lg-offset-1'
435 | 'col-xs-offset-2'
436 | 'col-sm-offset-2'
437 | 'col-md-offset-2'
438 | 'col-lg-offset-2'
439 | 'col-xs-offset-3'
440 | 'col-sm-offset-3'
441 | 'col-md-offset-3'
442 | 'col-lg-offset-3'
443 | 'col-xs-offset-4'
444 | 'col-sm-offset-4'
445 | 'col-md-offset-4'
446 | 'col-lg-offset-4'
447 | 'col-xs-offset-5'
448 | 'col-sm-offset-5'
449 | 'col-md-offset-5'
450 | 'col-lg-offset-5'
451 | 'col-xs-offset-6'
452 | 'col-sm-offset-6'
453 | 'col-md-offset-6'
454 | 'col-lg-offset-6'
455 | 'col-xs-offset-7'
456 | 'col-sm-offset-7'
457 | 'col-md-offset-7'
458 | 'col-lg-offset-7'
459 | 'col-xs-offset-8'
460 | 'col-sm-offset-8'
461 | 'col-md-offset-8'
462 | 'col-lg-offset-8'
463 | 'col-xs-offset-9'
464 | 'col-sm-offset-9'
465 | 'col-md-offset-9'
466 | 'col-lg-offset-9'
467 | 'col-xs-offset-10'
468 | 'col-sm-offset-10'
469 | 'col-md-offset-10'
470 | 'col-lg-offset-10'
471 | 'col-xs-offset-11'
472 | 'col-sm-offset-11'
473 | 'col-md-offset-11'
474 | 'col-lg-offset-11'
475 | 'col-xs-offset-12'
476 | 'col-sm-offset-12'
477 | 'col-md-offset-12'
478 | 'col-lg-offset-12'
479 |
480 | 'data-toggle'
481 | 'data-toggle="tooltip"'
482 | 'data-toggle="modal"'
483 | 'data-toggle="tab"'
484 | 'data-toggle="dropdown"'
485 | 'data-toggle="popover"'
486 | 'data-toggle="button"'
487 |
488 | 'data-'
489 | 'data-target'
490 |
491 | 'show.bs.modal'
492 | 'shown.bs.modal'
493 | 'hide.bs.modal'
494 | 'hidden.bs.modal'
495 | 'loaded.bs.modal'
496 | 'show.bs.dropdown'
497 | 'shown.bs.dropdown'
498 | 'hide.bs.dropdown'
499 | 'hidden.bs.dropdown'
500 | 'show.bs.tab'
501 | 'shown.bs.tab'
502 | 'activate.bs.scrollspy'
503 | 'show.bs.tooltip'
504 | 'shown.bs.tooltip'
505 | 'hide.bs.tooltip'
506 | 'hidden.bs.tooltip'
507 | 'show.bs.popover'
508 | 'shown.bs.popover'
509 | 'hide.bs.popover'
510 | 'hidden.bs.popover'
511 | 'show.bs.collapse'
512 | 'shown.bs.collapse'
513 | 'hide.bs.collapse'
514 | 'hidden.bs.collapse'
515 | 'close.bs.alert'
516 | 'closed.bs.alert'
517 | 'slide.bs.carousel'
518 | 'slid.bs.carousel'
519 | 'affix.bs.affix'
520 | 'affixed.bs.affix'
521 | 'affix-top.bs.affix'
522 | 'affixed-top.bs.affix'
523 | 'affix-bottom.bs.affix'
524 | 'affixed-bottom.bs.affix'
525 |
526 | 'modal'
527 | 'alert'
528 | 'scroll'
529 | 'backdrop'
530 | 'keyboard'
531 | 'show'
532 | 'remote'
533 | 'on'
534 | 'scrollspy'
535 | 'refresh'
536 | 'offset'
537 | 'animation'
538 | 'html'
539 | 'placement'
540 | 'selector'
541 | 'title'
542 | 'trigger'
543 | 'delay'
544 | 'container'
545 |
546 | 'tab'
547 | 'show'
548 | 'hide'
549 | 'toggle'
550 | 'reset'
551 | 'destroy'
552 |
553 | 'collapse'
554 | 'collapsing'
555 |
556 | 'carousel'
557 | 'slide'
558 |
559 | 'prev'
560 | 'next'
561 | ]
562 |
--------------------------------------------------------------------------------
/settings/icons.fontawesome.cson:
--------------------------------------------------------------------------------
1 | '.text.html, .source.css, .source.sass, .source.less, .source.jade':
2 | 'editor':
3 | 'completions': [
4 | 'fa-lg'
5 | 'fa-2x'
6 | 'fa-3x'
7 | 'fa-4x'
8 | 'fa-5x'
9 | 'fa-fw'
10 | 'fa-ul'
11 | 'fa-li'
12 | 'fa-border'
13 | 'fa-spin'
14 | 'fa-rotate-90'
15 | 'fa-rotate-180'
16 | 'fa-rotate-270'
17 | 'fa-flip-horizontal'
18 | 'fa-flip-vertical'
19 | 'fa-stack'
20 | 'fa-stack-1x'
21 | 'fa-stack-2x'
22 | 'fa-inverse'
23 | 'fa-glass'
24 | 'fa-music'
25 | 'fa-search'
26 | 'fa-envelope-o'
27 | 'fa-heart'
28 | 'fa-star'
29 | 'fa-star-o'
30 | 'fa-user'
31 | 'fa-film'
32 | 'fa-th-large'
33 | 'fa-th'
34 | 'fa-th-list'
35 | 'fa-check'
36 | 'fa-times'
37 | 'fa-search-plus'
38 | 'fa-search-minus'
39 | 'fa-power-off'
40 | 'fa-signal'
41 | 'fa-gear'
42 | 'fa-cog'
43 | 'fa-trash-o'
44 | 'fa-home'
45 | 'fa-file-o'
46 | 'fa-clock-o'
47 | 'fa-road'
48 | 'fa-download'
49 | 'fa-arrow-circle-o-down'
50 | 'fa-arrow-circle-o-up'
51 | 'fa-inbox'
52 | 'fa-play-circle-o'
53 | 'fa-rotate-right'
54 | 'fa-repeat'
55 | 'fa-refresh'
56 | 'fa-list-alt'
57 | 'fa-lock'
58 | 'fa-flag'
59 | 'fa-headphones'
60 | 'fa-volume-off'
61 | 'fa-volume-down'
62 | 'fa-volume-up'
63 | 'fa-qrcode'
64 | 'fa-barcode'
65 | 'fa-tag'
66 | 'fa-tags'
67 | 'fa-book'
68 | 'fa-bookmark'
69 | 'fa-print'
70 | 'fa-camera'
71 | 'fa-font'
72 | 'fa-bold'
73 | 'fa-italic'
74 | 'fa-text-height'
75 | 'fa-text-width'
76 | 'fa-align-left'
77 | 'fa-align-center'
78 | 'fa-align-right'
79 | 'fa-align-justify'
80 | 'fa-list'
81 | 'fa-dedent'
82 | 'fa-outdent'
83 | 'fa-indent'
84 | 'fa-video-camera'
85 | 'fa-picture-o'
86 | 'fa-pencil'
87 | 'fa-map-marker'
88 | 'fa-adjust'
89 | 'fa-tint'
90 | 'fa-edit'
91 | 'fa-pencil-square-o'
92 | 'fa-share-square-o'
93 | 'fa-check-square-o'
94 | 'fa-arrows'
95 | 'fa-step-backward'
96 | 'fa-fast-backward'
97 | 'fa-backward'
98 | 'fa-play'
99 | 'fa-pause'
100 | 'fa-stop'
101 | 'fa-forward'
102 | 'fa-fast-forward'
103 | 'fa-step-forward'
104 | 'fa-eject'
105 | 'fa-chevron-left'
106 | 'fa-chevron-right'
107 | 'fa-plus-circle'
108 | 'fa-minus-circle'
109 | 'fa-times-circle'
110 | 'fa-check-circle'
111 | 'fa-question-circle'
112 | 'fa-info-circle'
113 | 'fa-crosshairs'
114 | 'fa-times-circle-o'
115 | 'fa-check-circle-o'
116 | 'fa-ban'
117 | 'fa-arrow-left'
118 | 'fa-arrow-right'
119 | 'fa-arrow-up'
120 | 'fa-arrow-down'
121 | 'fa-mail-forward'
122 | 'fa-share'
123 | 'fa-expand'
124 | 'fa-compress'
125 | 'fa-plus'
126 | 'fa-minus'
127 | 'fa-asterisk'
128 | 'fa-exclamation-circle'
129 | 'fa-gift'
130 | 'fa-leaf'
131 | 'fa-fire'
132 | 'fa-eye'
133 | 'fa-eye-slash'
134 | 'fa-warning'
135 | 'fa-exclamation-triangle'
136 | 'fa-plane'
137 | 'fa-calendar'
138 | 'fa-random'
139 | 'fa-comment'
140 | 'fa-magnet'
141 | 'fa-chevron-up'
142 | 'fa-chevron-down'
143 | 'fa-retweet'
144 | 'fa-shopping-cart'
145 | 'fa-folder'
146 | 'fa-folder-open'
147 | 'fa-arrows-v'
148 | 'fa-arrows-h'
149 | 'fa-bar-chart-o'
150 | 'fa-twitter-square'
151 | 'fa-facebook-square'
152 | 'fa-camera-retro'
153 | 'fa-key'
154 | 'fa-gears'
155 | 'fa-cogs'
156 | 'fa-comments'
157 | 'fa-thumbs-o-up'
158 | 'fa-thumbs-o-down'
159 | 'fa-star-half'
160 | 'fa-heart-o'
161 | 'fa-sign-out'
162 | 'fa-linkedin-square'
163 | 'fa-thumb-tack'
164 | 'fa-external-link'
165 | 'fa-sign-in'
166 | 'fa-trophy'
167 | 'fa-github-square'
168 | 'fa-upload'
169 | 'fa-lemon-o'
170 | 'fa-phone'
171 | 'fa-square-o'
172 | 'fa-bookmark-o'
173 | 'fa-phone-square'
174 | 'fa-twitter'
175 | 'fa-facebook'
176 | 'fa-github'
177 | 'fa-unlock'
178 | 'fa-credit-card'
179 | 'fa-rss'
180 | 'fa-hdd-o'
181 | 'fa-bullhorn'
182 | 'fa-bell'
183 | 'fa-certificate'
184 | 'fa-hand-o-right'
185 | 'fa-hand-o-left'
186 | 'fa-hand-o-up'
187 | 'fa-hand-o-down'
188 | 'fa-arrow-circle-left'
189 | 'fa-arrow-circle-right'
190 | 'fa-arrow-circle-up'
191 | 'fa-arrow-circle-down'
192 | 'fa-globe'
193 | 'fa-wrench'
194 | 'fa-tasks'
195 | 'fa-filter'
196 | 'fa-briefcase'
197 | 'fa-arrows-alt'
198 | 'fa-group'
199 | 'fa-users'
200 | 'fa-chain'
201 | 'fa-link'
202 | 'fa-cloud'
203 | 'fa-flask'
204 | 'fa-cut'
205 | 'fa-scissors'
206 | 'fa-copy'
207 | 'fa-files-o'
208 | 'fa-paperclip'
209 | 'fa-save'
210 | 'fa-floppy-o'
211 | 'fa-square'
212 | 'fa-bars'
213 | 'fa-list-ul'
214 | 'fa-list-ol'
215 | 'fa-strikethrough'
216 | 'fa-underline'
217 | 'fa-table'
218 | 'fa-magic'
219 | 'fa-truck'
220 | 'fa-pinterest'
221 | 'fa-pinterest-square'
222 | 'fa-google-plus-square'
223 | 'fa-google-plus'
224 | 'fa-money'
225 | 'fa-caret-down'
226 | 'fa-caret-up'
227 | 'fa-caret-left'
228 | 'fa-caret-right'
229 | 'fa-columns'
230 | 'fa-unsorted'
231 | 'fa-sort'
232 | 'fa-sort-down'
233 | 'fa-sort-asc'
234 | 'fa-sort-up'
235 | 'fa-sort-desc'
236 | 'fa-envelope'
237 | 'fa-linkedin'
238 | 'fa-rotate-left'
239 | 'fa-undo'
240 | 'fa-legal'
241 | 'fa-gavel'
242 | 'fa-dashboard'
243 | 'fa-tachometer'
244 | 'fa-comment-o'
245 | 'fa-comments-o'
246 | 'fa-flash'
247 | 'fa-bolt'
248 | 'fa-sitemap'
249 | 'fa-umbrella'
250 | 'fa-paste'
251 | 'fa-clipboard'
252 | 'fa-lightbulb-o'
253 | 'fa-exchange'
254 | 'fa-cloud-download'
255 | 'fa-cloud-upload'
256 | 'fa-user-md'
257 | 'fa-stethoscope'
258 | 'fa-suitcase'
259 | 'fa-bell-o'
260 | 'fa-coffee'
261 | 'fa-cutlery'
262 | 'fa-file-text-o'
263 | 'fa-building-o'
264 | 'fa-hospital-o'
265 | 'fa-ambulance'
266 | 'fa-medkit'
267 | 'fa-fighter-jet'
268 | 'fa-beer'
269 | 'fa-h-square'
270 | 'fa-plus-square'
271 | 'fa-angle-double-left'
272 | 'fa-angle-double-right'
273 | 'fa-angle-double-up'
274 | 'fa-angle-double-down'
275 | 'fa-angle-left'
276 | 'fa-angle-right'
277 | 'fa-angle-up'
278 | 'fa-angle-down'
279 | 'fa-desktop'
280 | 'fa-laptop'
281 | 'fa-tablet'
282 | 'fa-mobile-phone'
283 | 'fa-mobile'
284 | 'fa-circle-o'
285 | 'fa-quote-left'
286 | 'fa-quote-right'
287 | 'fa-spinner'
288 | 'fa-circle'
289 | 'fa-mail-reply'
290 | 'fa-reply'
291 | 'fa-github-alt'
292 | 'fa-folder-o'
293 | 'fa-folder-open-o'
294 | 'fa-smile-o'
295 | 'fa-frown-o'
296 | 'fa-meh-o'
297 | 'fa-gamepad'
298 | 'fa-keyboard-o'
299 | 'fa-flag-o'
300 | 'fa-flag-checkered'
301 | 'fa-terminal'
302 | 'fa-code'
303 | 'fa-reply-all'
304 | 'fa-mail-reply-all'
305 | 'fa-star-half-empty'
306 | 'fa-star-half-full'
307 | 'fa-star-half-o'
308 | 'fa-location-arrow'
309 | 'fa-crop'
310 | 'fa-code-fork'
311 | 'fa-unlink'
312 | 'fa-chain-broken'
313 | 'fa-question'
314 | 'fa-info'
315 | 'fa-exclamation'
316 | 'fa-superscript'
317 | 'fa-subscript'
318 | 'fa-eraser'
319 | 'fa-puzzle-piece'
320 | 'fa-microphone'
321 | 'fa-microphone-slash'
322 | 'fa-shield'
323 | 'fa-calendar-o'
324 | 'fa-fire-extinguisher'
325 | 'fa-rocket'
326 | 'fa-maxcdn'
327 | 'fa-chevron-circle-left'
328 | 'fa-chevron-circle-right'
329 | 'fa-chevron-circle-up'
330 | 'fa-chevron-circle-down'
331 | 'fa-html5'
332 | 'fa-css3'
333 | 'fa-anchor'
334 | 'fa-unlock-alt'
335 | 'fa-bullseye'
336 | 'fa-ellipsis-h'
337 | 'fa-ellipsis-v'
338 | 'fa-rss-square'
339 | 'fa-play-circle'
340 | 'fa-ticket'
341 | 'fa-minus-square'
342 | 'fa-minus-square-o'
343 | 'fa-level-up'
344 | 'fa-level-down'
345 | 'fa-check-square'
346 | 'fa-pencil-square'
347 | 'fa-external-link-square'
348 | 'fa-share-square'
349 | 'fa-compass'
350 | 'fa-toggle-down'
351 | 'fa-caret-square-o-down'
352 | 'fa-toggle-up'
353 | 'fa-caret-square-o-up'
354 | 'fa-toggle-right'
355 | 'fa-caret-square-o-right'
356 | 'fa-euro'
357 | 'fa-eur'
358 | 'fa-gbp'
359 | 'fa-dollar'
360 | 'fa-usd'
361 | 'fa-rupee'
362 | 'fa-inr'
363 | 'fa-cny'
364 | 'fa-rmb'
365 | 'fa-yen'
366 | 'fa-jpy'
367 | 'fa-ruble'
368 | 'fa-rouble'
369 | 'fa-rub'
370 | 'fa-won'
371 | 'fa-krw'
372 | 'fa-bitcoin'
373 | 'fa-btc'
374 | 'fa-file'
375 | 'fa-file-text'
376 | 'fa-sort-alpha-asc'
377 | 'fa-sort-alpha-desc'
378 | 'fa-sort-amount-asc'
379 | 'fa-sort-amount-desc'
380 | 'fa-sort-numeric-asc'
381 | 'fa-sort-numeric-desc'
382 | 'fa-thumbs-up'
383 | 'fa-thumbs-down'
384 | 'fa-youtube-square'
385 | 'fa-youtube'
386 | 'fa-xing'
387 | 'fa-xing-square'
388 | 'fa-youtube-play'
389 | 'fa-dropbox'
390 | 'fa-stack-overflow'
391 | 'fa-instagram'
392 | 'fa-flickr'
393 | 'fa-adn'
394 | 'fa-bitbucket'
395 | 'fa-bitbucket-square'
396 | 'fa-tumblr'
397 | 'fa-tumblr-square'
398 | 'fa-long-arrow-down'
399 | 'fa-long-arrow-up'
400 | 'fa-long-arrow-left'
401 | 'fa-long-arrow-right'
402 | 'fa-apple'
403 | 'fa-windows'
404 | 'fa-android'
405 | 'fa-linux'
406 | 'fa-dribbble'
407 | 'fa-skype'
408 | 'fa-foursquare'
409 | 'fa-trello'
410 | 'fa-female'
411 | 'fa-male'
412 | 'fa-gittip'
413 | 'fa-sun-o'
414 | 'fa-moon-o'
415 | 'fa-archive'
416 | 'fa-bug'
417 | 'fa-vk'
418 | 'fa-weibo'
419 | 'fa-renren'
420 | 'fa-pagelines'
421 | 'fa-stack-exchange'
422 | 'fa-arrow-circle-o-right'
423 | 'fa-arrow-circle-o-left'
424 | 'fa-toggle-left'
425 | 'fa-caret-square-o-left'
426 | 'fa-dot-circle-o'
427 | 'fa-wheelchair'
428 | 'fa-vimeo-square'
429 | 'fa-turkish-lira'
430 | 'fa-try'
431 | 'fa-plus-square-o'
432 | ]
433 |
--------------------------------------------------------------------------------
/settings/icons.glyphicons.cson:
--------------------------------------------------------------------------------
1 | '.text.html, .source.css, .source.sass, .source.less, .source.jade':
2 | 'editor':
3 | 'completions': [
4 | 'glyphicon-asterisk'
5 | 'glyphicon-plus'
6 | 'glyphicon-euro'
7 | 'glyphicon-minus'
8 | 'glyphicon-cloud'
9 | 'glyphicon-envelope'
10 | 'glyphicon-pencil'
11 | 'glyphicon-glass'
12 | 'glyphicon-music'
13 | 'glyphicon-search'
14 | 'glyphicon-heart'
15 | 'glyphicon-star'
16 | 'glyphicon-star-empty'
17 | 'glyphicon-user'
18 | 'glyphicon-film'
19 | 'glyphicon-th-large'
20 | 'glyphicon-th'
21 | 'glyphicon-th-list'
22 | 'glyphicon-ok'
23 | 'glyphicon-remove'
24 | 'glyphicon-zoom-in'
25 | 'glyphicon-zoom-out'
26 | 'glyphicon-off'
27 | 'glyphicon-signal'
28 | 'glyphicon-cog'
29 | 'glyphicon-trash'
30 | 'glyphicon-home'
31 | 'glyphicon-file'
32 | 'glyphicon-time'
33 | 'glyphicon-road'
34 | 'glyphicon-download-alt'
35 | 'glyphicon-download'
36 | 'glyphicon-upload'
37 | 'glyphicon-inbox'
38 | 'glyphicon-play-circle'
39 | 'glyphicon-repeat'
40 | 'glyphicon-refresh'
41 | 'glyphicon-list-alt'
42 | 'glyphicon-lock'
43 | 'glyphicon-flag'
44 | 'glyphicon-headphones'
45 | 'glyphicon-volume-off'
46 | 'glyphicon-volume-down'
47 | 'glyphicon-volume-up'
48 | 'glyphicon-qrcode'
49 | 'glyphicon-barcode'
50 | 'glyphicon-tag'
51 | 'glyphicon-tags'
52 | 'glyphicon-book'
53 | 'glyphicon-bookmark'
54 | 'glyphicon-print'
55 | 'glyphicon-camera'
56 | 'glyphicon-font'
57 | 'glyphicon-bold'
58 | 'glyphicon-italic'
59 | 'glyphicon-text-height'
60 | 'glyphicon-text-width'
61 | 'glyphicon-align-left'
62 | 'glyphicon-align-center'
63 | 'glyphicon-align-right'
64 | 'glyphicon-align-justify'
65 | 'glyphicon-list'
66 | 'glyphicon-indent-left'
67 | 'glyphicon-indent-right'
68 | 'glyphicon-facetime-video'
69 | 'glyphicon-picture'
70 | 'glyphicon-map-marker'
71 | 'glyphicon-adjust'
72 | 'glyphicon-tint'
73 | 'glyphicon-edit'
74 | 'glyphicon-share'
75 | 'glyphicon-check'
76 | 'glyphicon-move'
77 | 'glyphicon-step-backward'
78 | 'glyphicon-fast-backward'
79 | 'glyphicon-backward'
80 | 'glyphicon-play'
81 | 'glyphicon-pause'
82 | 'glyphicon-stop'
83 | 'glyphicon-forward'
84 | 'glyphicon-fast-forward'
85 | 'glyphicon-step-forward'
86 | 'glyphicon-eject'
87 | 'glyphicon-chevron-left'
88 | 'glyphicon-chevron-right'
89 | 'glyphicon-plus-sign'
90 | 'glyphicon-minus-sign'
91 | 'glyphicon-remove-sign'
92 | 'glyphicon-ok-sign'
93 | 'glyphicon-question-sign'
94 | 'glyphicon-info-sign'
95 | 'glyphicon-screenshot'
96 | 'glyphicon-remove-circle'
97 | 'glyphicon-ok-circle'
98 | 'glyphicon-ban-circle'
99 | 'glyphicon-arrow-left'
100 | 'glyphicon-arrow-right'
101 | 'glyphicon-arrow-up'
102 | 'glyphicon-arrow-down'
103 | 'glyphicon-share-alt'
104 | 'glyphicon-resize-full'
105 | 'glyphicon-resize-small'
106 | 'glyphicon-exclamation-sign'
107 | 'glyphicon-gift'
108 | 'glyphicon-leaf'
109 | 'glyphicon-fire'
110 | 'glyphicon-eye-open'
111 | 'glyphicon-eye-close'
112 | 'glyphicon-warning-sign'
113 | 'glyphicon-plane'
114 | 'glyphicon-calendar'
115 | 'glyphicon-random'
116 | 'glyphicon-comment'
117 | 'glyphicon-magnet'
118 | 'glyphicon-chevron-up'
119 | 'glyphicon-chevron-down'
120 | 'glyphicon-retweet'
121 | 'glyphicon-shopping-cart'
122 | 'glyphicon-folder-close'
123 | 'glyphicon-folder-open'
124 | 'glyphicon-resize-vertical'
125 | 'glyphicon-resize-horizontal'
126 | 'glyphicon-hdd'
127 | 'glyphicon-bullhorn'
128 | 'glyphicon-bell'
129 | 'glyphicon-certificate'
130 | 'glyphicon-thumbs-up'
131 | 'glyphicon-thumbs-down'
132 | 'glyphicon-hand-right'
133 | 'glyphicon-hand-left'
134 | 'glyphicon-hand-up'
135 | 'glyphicon-hand-down'
136 | 'glyphicon-circle-arrow-right'
137 | 'glyphicon-circle-arrow-left'
138 | 'glyphicon-circle-arrow-up'
139 | 'glyphicon-circle-arrow-down'
140 | 'glyphicon-globe'
141 | 'glyphicon-wrench'
142 | 'glyphicon-tasks'
143 | 'glyphicon-filter'
144 | 'glyphicon-briefcase'
145 | 'glyphicon-fullscreen'
146 | 'glyphicon-dashboard'
147 | 'glyphicon-paperclip'
148 | 'glyphicon-heart-empty'
149 | 'glyphicon-link'
150 | 'glyphicon-phone'
151 | 'glyphicon-pushpin'
152 | 'glyphicon-usd'
153 | 'glyphicon-gbp'
154 | 'glyphicon-sort'
155 | 'glyphicon-sort-by-alphabet'
156 | 'glyphicon-sort-by-alphabet-alt'
157 | 'glyphicon-sort-by-order'
158 | 'glyphicon-sort-by-order-alt'
159 | 'glyphicon-sort-by-attributes'
160 | 'glyphicon-sort-by-attributes-alt'
161 | 'glyphicon-unchecked'
162 | 'glyphicon-expand'
163 | 'glyphicon-collapse-down'
164 | 'glyphicon-collapse-up'
165 | 'glyphicon-log-in'
166 | 'glyphicon-flash'
167 | 'glyphicon-log-out'
168 | 'glyphicon-new-window'
169 | 'glyphicon-record'
170 | 'glyphicon-save'
171 | 'glyphicon-open'
172 | 'glyphicon-saved'
173 | 'glyphicon-import'
174 | 'glyphicon-export'
175 | 'glyphicon-send'
176 | 'glyphicon-floppy-disk'
177 | 'glyphicon-floppy-saved'
178 | 'glyphicon-floppy-remove'
179 | 'glyphicon-floppy-save'
180 | 'glyphicon-floppy-open'
181 | 'glyphicon-credit-card'
182 | 'glyphicon-transfer'
183 | 'glyphicon-cutlery'
184 | 'glyphicon-header'
185 | 'glyphicon-compressed'
186 | 'glyphicon-earphone'
187 | 'glyphicon-phone-alt'
188 | 'glyphicon-tower'
189 | 'glyphicon-stats'
190 | 'glyphicon-sd-video'
191 | 'glyphicon-hd-video'
192 | 'glyphicon-subtitles'
193 | 'glyphicon-sound-stereo'
194 | 'glyphicon-sound-dolby'
195 | 'glyphicon-sound-5-1'
196 | 'glyphicon-sound-6-1'
197 | 'glyphicon-sound-7-1'
198 | 'glyphicon-copyright-mark'
199 | 'glyphicon-registration-mark'
200 | 'glyphicon-cloud-download'
201 | 'glyphicon-cloud-upload'
202 | 'glyphicon-tree-conifer'
203 | 'glyphicon-tree-deciduous'
204 | 'glyphicon-cd'
205 | 'glyphicon-save-file'
206 | 'glyphicon-open-file'
207 | 'glyphicon-level-up'
208 | 'glyphicon-copy'
209 | 'glyphicon-paste'
210 | 'glyphicon-alert'
211 | 'glyphicon-equalizer'
212 | 'glyphicon-king'
213 | 'glyphicon-queen'
214 | 'glyphicon-pawn'
215 | 'glyphicon-bishop'
216 | 'glyphicon-knight'
217 | 'glyphicon-baby-formula'
218 | 'glyphicon-tent'
219 | 'glyphicon-blackboard'
220 | 'glyphicon-bed'
221 | 'glyphicon-apple'
222 | 'glyphicon-erase'
223 | 'glyphicon-hourglass'
224 | 'glyphicon-lamp'
225 | 'glyphicon-duplicate'
226 | 'glyphicon-piggy-bank'
227 | 'glyphicon-scissors'
228 | 'glyphicon-bitcoin'
229 | 'glyphicon-btc'
230 | 'glyphicon-xbt'
231 | 'glyphicon-yen'
232 | 'glyphicon-jpy'
233 | 'glyphicon-ruble'
234 | 'glyphicon-rub'
235 | 'glyphicon-scale'
236 | 'glyphicon-ice-lolly'
237 | 'glyphicon-ice-lolly-tasted'
238 | 'glyphicon-education'
239 | 'glyphicon-option-horizontal'
240 | 'glyphicon-option-vertical'
241 | 'glyphicon-menu-hamburger'
242 | 'glyphicon-modal-window'
243 | 'glyphicon-oil'
244 | 'glyphicon-grain'
245 | 'glyphicon-sunglasses'
246 | 'glyphicon-text-size'
247 | 'glyphicon-text-color'
248 | 'glyphicon-text-background'
249 | 'glyphicon-object-align-top'
250 | 'glyphicon-object-align-bottom'
251 | 'glyphicon-object-align-horizontal'
252 | 'glyphicon-object-align-left'
253 | 'glyphicon-object-align-vertical'
254 | 'glyphicon-object-align-right'
255 | 'glyphicon-triangle-right'
256 | 'glyphicon-triangle-left'
257 | 'glyphicon-triangle-bottom'
258 | 'glyphicon-triangle-top'
259 | 'glyphicon-console'
260 | 'glyphicon-superscript'
261 | 'glyphicon-subscript'
262 | 'glyphicon-menu-left'
263 | 'glyphicon-menu-right'
264 | 'glyphicon-menu-down'
265 | 'glyphicon-menu-up'
266 | ]
267 |
--------------------------------------------------------------------------------
/settings/icons.octicons.cson:
--------------------------------------------------------------------------------
1 | '.text.html, .source.css, .source.sass, .source.less, .source.jade':
2 | 'editor':
3 | 'completions': [
4 | 'octicon-alert'
5 | 'octicon-alignment-align'
6 | 'octicon-alignment-aligned-to'
7 | 'octicon-alignment-unalign'
8 | 'octicon-arrow-down'
9 | 'octicon-arrow-left'
10 | 'octicon-arrow-right'
11 | 'octicon-arrow-small-down'
12 | 'octicon-arrow-small-left'
13 | 'octicon-arrow-small-right'
14 | 'octicon-arrow-small-up'
15 | 'octicon-arrow-up'
16 | 'octicon-beer'
17 | 'octicon-book'
18 | 'octicon-bookmark'
19 | 'octicon-briefcase'
20 | 'octicon-broadcast'
21 | 'octicon-browser'
22 | 'octicon-bug'
23 | 'octicon-calendar'
24 | 'octicon-check'
25 | 'octicon-checklist'
26 | 'octicon-chevron-down'
27 | 'octicon-chevron-left'
28 | 'octicon-chevron-right'
29 | 'octicon-chevron-up'
30 | 'octicon-circle-slash'
31 | 'octicon-circuit-board'
32 | 'octicon-clippy'
33 | 'octicon-clock'
34 | 'octicon-cloud-download'
35 | 'octicon-cloud-upload'
36 | 'octicon-code'
37 | 'octicon-color-mode'
38 | 'octicon-comment'
39 | 'octicon-comment-discussion'
40 | 'octicon-credit-card'
41 | 'octicon-dash'
42 | 'octicon-dashboard'
43 | 'octicon-database'
44 | 'octicon-device-camera'
45 | 'octicon-device-camera-video'
46 | 'octicon-device-desktop'
47 | 'octicon-device-mobile'
48 | 'octicon-diff'
49 | 'octicon-diff-added'
50 | 'octicon-diff-ignored'
51 | 'octicon-diff-modified'
52 | 'octicon-diff-removed'
53 | 'octicon-diff-renamed'
54 | 'octicon-ellipsis'
55 | 'octicon-eye'
56 | 'octicon-file-binary'
57 | 'octicon-file-code'
58 | 'octicon-file-directory'
59 | 'octicon-file-media'
60 | 'octicon-file-pdf'
61 | 'octicon-file-submodule'
62 | 'octicon-file-symlink-directory'
63 | 'octicon-file-symlink-file'
64 | 'octicon-file-text'
65 | 'octicon-file-zip'
66 | 'octicon-flame'
67 | 'octicon-fold'
68 | 'octicon-gear'
69 | 'octicon-gift'
70 | 'octicon-gist'
71 | 'octicon-gist-secret'
72 | 'octicon-git-branch'
73 | 'octicon-git-commit'
74 | 'octicon-git-compare'
75 | 'octicon-git-merge'
76 | 'octicon-git-pull-request'
77 | 'octicon-globe'
78 | 'octicon-graph'
79 | 'octicon-heart'
80 | 'octicon-history'
81 | 'octicon-home'
82 | 'octicon-horizontal-rule'
83 | 'octicon-hourglass'
84 | 'octicon-hubot'
85 | 'octicon-inbox'
86 | 'octicon-info'
87 | 'octicon-issue-closed'
88 | 'octicon-issue-opened'
89 | 'octicon-issue-reopened'
90 | 'octicon-jersey'
91 | 'octicon-jump-down'
92 | 'octicon-jump-left'
93 | 'octicon-jump-right'
94 | 'octicon-jump-up'
95 | 'octicon-key'
96 | 'octicon-keyboard'
97 | 'octicon-law'
98 | 'octicon-light-bulb'
99 | 'octicon-link'
100 | 'octicon-link-external'
101 | 'octicon-list-ordered'
102 | 'octicon-list-unordered'
103 | 'octicon-location'
104 | 'octicon-lock'
105 | 'octicon-logo-github'
106 | 'octicon-mail'
107 | 'octicon-mail-read'
108 | 'octicon-mail-reply'
109 | 'octicon-mark-github'
110 | 'octicon-markdown'
111 | 'octicon-megaphone'
112 | 'octicon-mention'
113 | 'octicon-microscope'
114 | 'octicon-milestone'
115 | 'octicon-mirror'
116 | 'octicon-mortar-board'
117 | 'octicon-move-down'
118 | 'octicon-move-left'
119 | 'octicon-move-right'
120 | 'octicon-move-up'
121 | 'octicon-mute'
122 | 'octicon-no-newline'
123 | 'octicon-octoface'
124 | 'octicon-organization'
125 | 'octicon-package'
126 | 'octicon-paintcan'
127 | 'octicon-pencil'
128 | 'octicon-person'
129 | 'octicon-pin'
130 | 'octicon-playback-fast-forward'
131 | 'octicon-playback-pause'
132 | 'octicon-playback-play'
133 | 'octicon-playback-rewind'
134 | 'octicon-plug'
135 | 'octicon-plus'
136 | 'octicon-podium'
137 | 'octicon-primitive-dot'
138 | 'octicon-primitive-square'
139 | 'octicon-pulse'
140 | 'octicon-puzzle'
141 | 'octicon-question'
142 | 'octicon-quote'
143 | 'octicon-radio-tower'
144 | 'octicon-repo'
145 | 'octicon-repo-clone'
146 | 'octicon-repo-force-push'
147 | 'octicon-repo-forked'
148 | 'octicon-repo-pull'
149 | 'octicon-repo-push'
150 | 'octicon-rocket'
151 | 'octicon-rss'
152 | 'octicon-ruby'
153 | 'octicon-screen-full'
154 | 'octicon-screen-normal'
155 | 'octicon-search'
156 | 'octicon-server'
157 | 'octicon-settings'
158 | 'opticon-shield'
159 | 'octicon-sign-in'
160 | 'octicon-sign-out'
161 | 'octicon-split'
162 | 'octicon-squirrel'
163 | 'octicon-star'
164 | 'octicon-steps'
165 | 'octicon-stop'
166 | 'octicon-sync'
167 | 'octicon-tag'
168 | 'octicon-telescope'
169 | 'octicon-terminal'
170 | 'octicon-three-bars'
171 | 'octicon-tools'
172 | 'octicon-trashcan'
173 | 'octicon-triangle-down'
174 | 'octicon-triangle-left'
175 | 'octicon-triangle-right'
176 | 'octicon-triangle-up'
177 | 'octicon-unfold'
178 | 'octicon-unmute'
179 | 'octicon-versions'
180 | 'octicon-x'
181 | 'octicon-zap'
182 | ]
183 |
--------------------------------------------------------------------------------
/snippets/components.cson:
--------------------------------------------------------------------------------
1 | ".text.html":
2 |
3 | 'Icon':
4 | 'prefix': 'icon'
5 | 'body': """
6 |
7 | """
8 |
9 | 'Octicons by GitHub':
10 | 'prefix': 'oi'
11 | 'body': """
12 | $0
13 | """
14 |
15 | 'Fontawesome Icon':
16 | 'prefix': 'fa'
17 | 'body': """
18 |
19 | """
20 |
21 | 'Button':
22 | 'prefix': 'btn'
23 | 'body': """
24 |
27 | """
28 |
29 | 'Button Modal':
30 | 'prefix': 'btn-modal'
31 | 'body': """
32 |
35 | """
36 |
37 | 'Dropdown':
38 | 'prefix': 'dropdown'
39 | 'body': """
40 |
41 |
45 |
48 |
49 | """
50 |
51 | 'Menu Item':
52 | 'prefix': 'menuitem'
53 | 'body': """
54 | $2
55 | """
56 |
57 | 'Menu Header':
58 | 'prefix': 'menuheader'
59 | 'body': """
60 |
61 | """
62 |
63 | 'Menu Divider':
64 | 'prefix': 'menudivider'
65 | 'body': """
66 |
67 | """
68 |
69 | 'Button Group':
70 | 'prefix': 'btn-group'
71 | 'body': """
72 |
73 | ${3:btn}
74 |
75 | """
76 |
77 | 'Button Group Vertical':
78 | 'prefix': 'btn-group-vertical'
79 | 'body': """
80 |
81 | ${3:btn}
82 |
83 | """
84 |
85 | 'Button Toolbar':
86 | 'prefix': 'btn-toolbar'
87 | 'body': """
88 |
89 | ${1:btngroup}
90 |
91 | """
92 |
93 | 'Input Group':
94 | 'prefix': 'input-group'
95 | 'body': """
96 |
97 | $1
98 |
99 | $3
100 |
101 | """
102 |
103 | 'Tab':
104 | 'prefix': 'nav-tabs'
105 | 'body': """
106 |
109 | """
110 |
111 | 'Item':
112 | 'prefix': 'item'
113 | 'body': """
114 | $2
115 | """
116 |
117 | 'Pills':
118 | 'prefix': 'nav-pills'
119 | 'body': """
120 |
123 | """
124 |
125 | 'Navbar':
126 | 'prefix': 'nav-'
127 | 'body': """
128 |
133 | """
134 |
135 | 'Breadcrumbs':
136 | 'prefix': 'breadcrumb'
137 | 'body': """
138 |
139 | $1
140 |
141 | """
142 |
143 | 'Pagination':
144 | 'prefix': 'pagination'
145 | 'body': """
146 |
151 | """
152 |
153 | "Pager":
154 | 'prefix': 'pager'
155 | 'body': """
156 |
159 | """
160 |
161 | 'Label':
162 | 'prefix': 'label-'
163 | 'body': """
164 | $2
165 | """
166 |
167 | 'Badge':
168 | 'prefix': 'badge'
169 | 'body': """
170 | $2
171 | """
172 |
173 | 'Jumbotron':
174 | 'prefix': 'jumbotron'
175 | 'body': """
176 |
177 |
${1:Hello, world!}
178 |
$2
179 |
180 | """
181 |
182 | 'Page Header':
183 | 'prefix': 'page-header'
184 | 'body': """
185 |
188 | """
189 |
190 | 'Thumbnail':
191 | 'prefix': 'thumbnail'
192 | 'body': """
193 |
194 | ${1:
}
195 |
196 | """
197 |
198 | 'Alert':
199 | 'prefix': 'alert'
200 | 'body': """
201 | $2
202 | """
203 |
204 | 'Alert Close':
205 | 'prefix': 'close'
206 | 'body': """
207 |
208 | """
209 |
210 | 'Alert Link':
211 | 'prefix': 'alert-link'
212 | 'body': """
213 | $2
214 | """
215 |
216 | 'Progress Bar':
217 | 'prefix': 'progress-'
218 | 'body': """
219 |
220 |
221 | $2
222 |
223 |
224 | """
225 |
226 | 'List Group':
227 | 'prefix': 'list-group'
228 | 'body': """
229 |
232 | """
233 |
234 | 'List Group Item':
235 | 'prefix': 'list-item'
236 | 'body': """
237 | $1
238 | """
239 |
240 | 'Panel':
241 | 'prefix': 'panel'
242 | 'body': """
243 |
244 | ${1:
245 |
$2
246 | }
247 |
248 | $3
249 |
250 | ${4:}
253 |
254 | """
255 |
256 | 'Well':
257 | 'prefix': 'well'
258 | 'body': """
259 |
260 | $2
261 |
262 | """
263 |
264 | 'Blockquote Reverse':
265 | 'prefix': 'blockquote-reverse'
266 | 'body': """
267 |
268 | $2
269 |
270 | """
271 |
272 | 'List Unstyled':
273 | 'prefix': 'list-unstyled'
274 | 'body': """
275 |
279 | """
280 |
281 | 'List Inline':
282 | 'prefix': 'list-inline'
283 | 'body': """
284 |
288 | """
289 |
290 | 'Dl Horizontal':
291 | 'prefix': 'dl-horizontal'
292 | 'body': """
293 |
294 | ${1:- $2
295 | - $3
}
296 |
297 | """
298 |
299 | 'Table':
300 | 'prefix': 'table-'
301 | 'body': """
302 |
305 | """
306 |
307 | 'Form Group':
308 | 'prefix': 'form-group'
309 | 'body': """
310 |
315 | """
316 |
--------------------------------------------------------------------------------
/snippets/grid.cson:
--------------------------------------------------------------------------------
1 | '.text.html':
2 |
3 | 'Container':
4 | 'prefix': 'con'
5 | 'body': """
6 |
7 | $1
8 |
9 | """
10 |
11 | 'Container Fluid':
12 | 'prefix': 'conf'
13 | 'body': """
14 |
15 | $1
16 |
17 | """
18 |
19 | 'Row':
20 | 'prefix': 'row'
21 | 'body': """
22 |
23 | $1
24 |
25 | """
26 |
27 | 'Column':
28 | 'prefix': 'col-'
29 | 'body': """
30 |
31 | $3
32 |
33 | """
34 |
35 | 'Column Extra Small':
36 | 'prefix': 'col-xs'
37 | 'body': """
38 |
39 | $0
40 |
41 | """
42 |
43 | 'Column Small':
44 | 'prefix': 'col-sm'
45 | 'body': """
46 |
47 | $0
48 |
49 | """
50 |
51 | 'Column Medium':
52 | 'prefix': 'col-md'
53 | 'body': """
54 |
55 | $0
56 |
57 | """
58 |
59 | 'Column Large':
60 | 'prefix': 'col-lg'
61 | 'body': """
62 |
63 | $0
64 |
65 | """
66 |
--------------------------------------------------------------------------------
/snippets/templates.cson:
--------------------------------------------------------------------------------
1 | '.text.html':
2 | 'Basic HTML Template':
3 | 'prefix': 'html-'
4 | 'body': """
5 |
6 |
7 |
8 |
9 |
10 |
11 | $1
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 | """
33 |
34 | 'Minimal HTML Template (No Comment)':
35 | 'prefix': 'html-min'
36 | 'body': """
37 |
38 |
39 |
40 |
41 |
42 |
43 | $1
44 |
45 |
46 |
47 |
48 |
52 |
53 |
54 | $2
55 |
56 |
57 |
58 |
59 |
60 | """
61 |
62 | 'HTML Template (Using Octicons by GitHub)':
63 | 'prefix': 'html-oi'
64 | 'body': """
65 |
66 |
67 |
68 |
69 |
70 |
71 | $1
72 |
73 |
74 |
75 |
76 |
80 |
81 |
82 | $0
83 |
84 |
85 |
86 |
87 |
88 | """
89 |
90 | 'Modal':
91 | 'prefix': 'modal'
92 | 'body': """
93 |
94 |
95 |
96 | ${3:}
100 |
101 | $6
102 |
103 | ${7:}
107 |
108 |
109 |
110 | """
111 |
112 | 'Accordion':
113 | 'prefix': 'accordion'
114 | 'body': """
115 |
116 |
117 |
124 |
125 |
126 | $6
127 |
128 |
129 |
130 |
131 | """
132 |
133 | 'Accordion Item':
134 | 'prefix': 'accordion-item'
135 | 'body': """
136 |
137 |
144 |
145 |
146 | $5
147 |
148 |
149 | $6
150 |
151 | """
152 |
153 | 'Carousel':
154 | 'prefix': 'carousel'
155 | 'body': """
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 |
166 |
167 |

168 |
169 | $4
170 |
171 |
172 | $5
173 |
174 |
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 | """
184 |
185 | 'Carousel Item':
186 | 'prefix': 'carousel-item'
187 | 'body': """
188 |
189 |

190 |
194 |
195 | """
196 |
197 | 'Navbar':
198 | 'prefix': 'navbar'
199 | 'body': """
200 |
232 | """
233 |
234 | 'Navbar Dropdown':
235 | 'prefix': 'navbar-dropdown'
236 | 'body': """
237 |
238 | ${1:Menu Item}
239 |
243 |
244 | """
245 |
--------------------------------------------------------------------------------
/snippets/typography.cson:
--------------------------------------------------------------------------------
1 | '.text.html':
2 |
3 | 'Initialism':
4 | 'prefix': 'initialism'
5 | 'body': '$2'
6 |
7 | 'Lead':
8 | 'prefix': 'lead'
9 | 'body': '$0
'
10 |
11 | 'Heading 1':
12 | 'prefix': 'h1-'
13 | 'body': '$1 ${2:$3}
'
14 |
15 | 'Heading 2':
16 | 'prefix': 'h2-'
17 | 'body': '$1 ${2:$3}
'
18 |
19 | 'Heading 3':
20 | 'prefix': 'h3-'
21 | 'body': '$1 ${2:$3}
'
22 |
23 | 'Heading 4':
24 | 'prefix': 'h4-'
25 | 'body': '$1 ${2:$3}
'
26 |
27 | 'Heading 5':
28 | 'prefix': 'h5-'
29 | 'body': '$1 ${2:$3}
'
30 |
31 | 'Heading 6':
32 | 'prefix': 'h6-'
33 | 'body': '$1 ${2:$3}
'
34 |
--------------------------------------------------------------------------------