├── coffeelint.json
├── .gitignore
├── .editorconfig
├── snippets
├── fa-helpers.json
├── fa-helpers-jsx.json
├── ratchicon--css.json
├── ratchicon--html.json
├── ratchicon--jsx.json
├── brandico-css.json
├── brandico.json
├── brandico-jsx.json
├── geomicon--css.json
├── social-css.json
├── geomicon--html.json
├── geomicon--jsx.json
├── social.json
├── social-jsx.json
├── foundicon.json
├── foundicon-jsx.json
├── fi--css.json
├── line-class.json
└── line-class-jsx.json
├── .github
└── workflows
│ └── stale.yml
├── package.json
├── LICENSE.md
├── .circleci
└── config.yml
├── gulpfile.js
├── CHANGELOG.md
└── README.md
/coffeelint.json:
--------------------------------------------------------------------------------
1 | {
2 | "max_line_length": {
3 | "value": null
4 | }
5 | }
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Package Managers
2 | bower_components/
3 | node_modules/
4 | npm-debug.log*
5 | shrinkwrap.yaml
6 | vendor/
7 | yarn-error.log
8 | yarn.lock
9 |
10 | # Development Files
11 | .eslintcache
12 | *.d.ts
13 | *.map
14 |
15 | # Project-specific
16 | todo.md
17 |
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | # EditorConfig is awesome: http://EditorConfig.org
2 | root = true
3 |
4 | [*]
5 | indent_style = space
6 | indent_size = 2
7 | charset = utf-8
8 | trim_trailing_whitespace = true
9 | insert_final_newline = true
10 |
11 | [*.md]
12 | trim_trailing_whitespace = false
13 |
--------------------------------------------------------------------------------
/snippets/fa-helpers.json:
--------------------------------------------------------------------------------
1 | {
2 | ".source.svelte, .text.html": {
3 | "fa-li": {
4 | "body": "
$2$0",
5 | "description": "",
6 | "prefix": "fa-li"
7 | },
8 | "fa-stack": {
9 | "body": "\n $2\n$0",
10 | "description": "",
11 | "prefix": "fa-stack"
12 | },
13 | "fa-ul": {
14 | "body": "$0",
15 | "description": "",
16 | "prefix": "fa-ul"
17 | }
18 | }
19 | }
--------------------------------------------------------------------------------
/snippets/fa-helpers-jsx.json:
--------------------------------------------------------------------------------
1 | {
2 | ".source.js.jsx": {
3 | "fa-li": {
4 | "body": "- $2
$0",
5 | "description": "- ",
6 | "prefix": "fa-li"
7 | },
8 | "fa-stack": {
9 | "body": "\n $2\n$0",
10 | "description": "",
11 | "prefix": "fa-stack"
12 | },
13 | "fa-ul": {
14 | "body": "$0",
15 | "description": "
",
16 | "prefix": "fa-ul"
17 | }
18 | }
19 | }
--------------------------------------------------------------------------------
/.github/workflows/stale.yml:
--------------------------------------------------------------------------------
1 | name: 'Stale issues and PR'
2 | on:
3 | schedule:
4 | - cron: '30 1 * * *'
5 |
6 | jobs:
7 | stale:
8 | runs-on: ubuntu-latest
9 | steps:
10 | - uses: actions/stale@v4
11 | with:
12 | stale-issue-label: stale
13 | stale-pr-label: stale
14 | stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 14 days.'
15 | stale-pr-message: 'This PR is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 14 days.'
16 | close-issue-message: 'This issue was closed because it has been stalled for 14 days with no activity.'
17 | close-pr-message: 'This PR was closed because it has been stalled for 14 days with no activity.'
18 | days-before-issue-stale: 90
19 | days-before-pr-stale: 90
20 | days-before-issue-close: 30
21 | days-before-pr-close: 30
22 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "icon-fonts-legacy",
3 | "version": "2.10.0",
4 | "description": "Atom snippets for a variety of icon fonts that were removed from the main package",
5 | "author": {
6 | "name": "Jan T. Sott",
7 | "url": "http://github.com/idleberg"
8 | },
9 | "keywords": [
10 | "glyphicons",
11 | "webfont"
12 | ],
13 | "repository": {
14 | "type": "git",
15 | "url": "https://github.com/idleberg/atom-icon-fonts-legacy"
16 | },
17 | "license": "MIT",
18 | "engines": {
19 | "atom": ">=1.0.0 <2.0.0"
20 | },
21 | "devDependencies": {
22 | "husky": ">=4 <5",
23 | "jsonlint": "^1.6.3",
24 | "lint-staged": "^10.5.4"
25 | },
26 | "scripts": {
27 | "build": "cd tools && yarn",
28 | "lint": "jsonlint snippets/*.json --quiet",
29 | "test": "npm run lint"
30 | },
31 | "husky": {
32 | "hooks": {
33 | "pre-commit": "lint-staged"
34 | }
35 | },
36 | "lint-staged": {
37 | "*.json": "jsonlint --quiet"
38 | },
39 | "volta": {
40 | "node": "14.16.1"
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2016-2020 Jan T. Sott
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6 |
7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8 |
9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
--------------------------------------------------------------------------------
/.circleci/config.yml:
--------------------------------------------------------------------------------
1 | version: 2.1
2 |
3 | commands:
4 | run-test:
5 | steps:
6 | - checkout
7 | - restore_cache:
8 | name: Restore npm Package Data Cache
9 | keys:
10 | - v1-dependency-cache-{{ checksum "package-lock.json" }}-{{ .Environment.CIRCLE_JOB }}
11 | - v1-dependency-cache-
12 | - run:
13 | name: Installing Node packages
14 | command: npm ci
15 | - save_cache:
16 | name: Cache npm Package Data
17 | key: v1-dependency-cache-{{ checksum "package-lock.json" }}-{{ .Environment.CIRCLE_JOB }}
18 | paths:
19 | - ./node_modules
20 | - run:
21 | name: Linting Source
22 | command: npm run lint
23 |
24 | jobs:
25 | node-current:
26 | docker:
27 | - image: cimg/node:current
28 | steps:
29 | - run-test
30 |
31 | node-lts:
32 | docker:
33 | - image: cimg/node:lts
34 | steps:
35 | - run-test
36 |
37 | workflows:
38 | node-run-tests:
39 | jobs:
40 | - node-current
41 | - node-lts
42 | version: 2
43 |
--------------------------------------------------------------------------------
/gulpfile.js:
--------------------------------------------------------------------------------
1 | // Dependencies
2 | const coffeelint = require('gulp-coffeelint');
3 | const debug = require('gulp-debug');
4 | const gulp = require('gulp');
5 | const jsonlint = require('gulp-jsonlint');
6 | const stylish = require('coffeelint-stylish');
7 |
8 | // Files
9 | const coffeeFiles = [
10 | './grammars/*.cson',
11 | './keymaps/*.cson',
12 | './lib/**/*.coffee',
13 | './menus/*.cson',
14 | './snippets/*.cson'
15 | ];
16 |
17 | const jsonFiles = [
18 | './grammars/*.json',
19 | './keymaps/*.json',
20 | './menus/*.json',
21 | './snippets/*.json',
22 | './package.json'
23 | ];
24 |
25 | // Lint CoffeeScript & CSON files
26 | gulp.task('lint:coffee', (done) => {
27 | gulp.src(coffeeFiles)
28 | .pipe(debug({title: 'coffeelint:'}))
29 | .pipe(coffeelint())
30 | .pipe(coffeelint.reporter(stylish))
31 | .pipe(coffeelint.reporter('fail'));
32 | done();
33 | });
34 |
35 | // Lint JSON files
36 | gulp.task('lint:json', (done) => {
37 | gulp.src(jsonFiles)
38 | .pipe(debug({title: 'jsonlint:'}))
39 | .pipe(jsonlint())
40 | .pipe(jsonlint.failAfterError())
41 | .pipe(jsonlint.reporter());
42 | done();
43 | });
44 |
45 | // Tasks
46 | gulp.task('lint', gulp.parallel('lint:coffee', 'lint:json', done => {
47 | done();
48 | }));
49 |
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # v2.10.0 [#](https://github.com/idleberg/atom-icon-fonts-legacy/releases/tag/v2.10.0)
2 |
3 | - add Foundation Icons from [main package](https://github.com/idleberg/atom-icon-fonts)
4 | - add Geomicons from [main package](https://github.com/idleberg/atom-icon-fonts)
5 | - decaffeinate
6 | - update linting scripts
7 |
8 | # v2.9.0 [#](https://github.com/idleberg/atom-icon-fonts-legacy/releases/tag/v2.9.0)
9 |
10 | - add Svelte support
11 |
12 | # v2.8.0 [#](https://github.com/idleberg/atom-icon-fonts-legacy/releases/tag/v2.8.0)
13 |
14 | - add Ratchicons
15 | - use Circle CI
16 |
17 | # v2.7.0 [#](https://github.com/idleberg/atom-icon-fonts-legacy/releases/tag/v2.7.0)
18 |
19 | - add icon fonts from [main package](https://github.com/idleberg/atom-icon-fonts)
20 | - Semantic UI
21 | - Brandico Icons
22 | - IcoFont
23 |
24 | # v2.6.0 [#](https://github.com/idleberg/atom-icon-fonts-legacy/releases/tag/v2.6.0)
25 |
26 | - add support for Font Awesome 4.x
27 |
28 | # v2.5.0 [#](https://github.com/idleberg/atom-icon-fonts-legacy/releases/tag/v2.5.0)
29 |
30 | - add support for JSX
31 | - include `CHANGELOG.md`
32 |
33 | # v2.4.0 [#](https://github.com/idleberg/atom-icon-fonts-legacy/releases/tag/v2.4.0)
34 |
35 | - Octicons have been moved back to [atom-icon-fonts](https://github.com/idleberg/atom-icon-fonts)
36 |
37 | # v2.3.0 [#](https://github.com/idleberg/atom-icon-fonts-legacy/releases/tag/v2.3.0)
38 |
39 | - add description to CSS snippets
40 | - restrict scope for CSS snippets
41 |
42 | # v2.2.1 [#](https://github.com/idleberg/atom-icon-fonts-legacy/releases/tag/v2.2.1)
43 |
44 | - add missing descriptions
45 | - integrate `yarn.lock` into Travis CI tests
46 | - update `devDependencies`
47 |
48 | # v2.2.0 [#](https://github.com/idleberg/atom-icon-fonts-legacy/releases/tag/v2.2.0)
49 |
50 | - add descriptions for HTML snippets
51 |
52 | # v2.1.0 [#](https://github.com/idleberg/atom-icon-fonts-legacy/releases/tag/v2.1.0)
53 |
54 | - add support for Octicons v4
55 |
56 | # v2.0.2 [#](https://github.com/idleberg/atom-icon-fonts-legacy/releases/tag/v2.0.2)
57 |
58 | - add trailing tab-stops
59 |
60 | # v2.0.1 [#](https://github.com/idleberg/atom-icon-fonts-legacy/releases/tag/v2.0.1)
61 |
62 | - use spaces to indent snippets
63 | - bump `gulp-lesshint` to v2.0.0
64 |
65 | # v2.0.0 [#](https://github.com/idleberg/atom-icon-fonts-legacy/releases/tag/v2.0.0)
66 |
67 | - add completions for Unicode values in style-sheets
68 | - update devDependencies
69 |
70 | # v1.2.0 [#](https://github.com/idleberg/atom-icon-fonts-legacy/releases/tag/v1.2.0)
71 |
72 | - remove `source.js` scope
73 |
74 | # v1.0.0 [#](https://github.com/idleberg/atom-icon-fonts-legacy/releases/tag/v1.0.0)
75 |
76 | - first release
77 |
78 | # v1.1.0 [#](https://github.com/idleberg/atom-icon-fonts-legacy/releases/tag/v1.1.0)
79 |
80 | - add `source.js` scope
81 |
82 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Icon Fonts (Legacy) for Atom
2 |
3 | [](https://atom.io/packages/icon-fonts-legacy)
4 | [](https://atom.io/packages/icon-fonts-legacy)
5 | [](https://atom.io/packages/icon-fonts-legacy)
6 | [](https://circleci.com/gh/idleberg/atom-icon-fonts-legacy)
7 |
8 | Snippets for icon fonts that have been deprecated from the main [Icon Fonts](https://github.com/idleberg/atom-icon-fonts) package ([see details](https://github.com/idleberg/atom-icon-fonts-legacy#prefixes)).
9 |
10 | This package is also available for [Sublime Text](https://github.com/idleberg/sublime-icon-fonts-legacy) and [Visual Studio Code](https://github.com/idleberg/vscode-icon-fonts-legacy).
11 |
12 | ## Installation
13 |
14 | ### apm
15 |
16 | * Install package `apm install icon-fonts-legacy` (or use the GUI)
17 |
18 | ### Using Git
19 |
20 | 1. Change directory `cd ~/.atom/packages/`
21 | 2. Clone repository `git clone https://github.com/idleberg/atom-icon-fonts-legacy icon-fonts-legacy`
22 |
23 | ## Usage
24 |
25 | Snippets are limited to the `.text.html`, `source.(css|less|sass|scss|stylus)` and `.source.js.jsx` scope. Typing the class name of an icon using the designated prefix will complete to a tag containing the icon class.
26 |
27 | ### Prefixes
28 |
29 | | Prefix | Icon Font | Version |
30 | |----------------|-------------------------------------|---------|
31 | | `brandico` | [Brandico Font][brandico] | – |
32 | | `fi` | [Foundation Icons v3][fi] | 3.0 |
33 | | `filetypes` | [Glyphicons Filetypes][filetypes] | 1.9.0 |
34 | | `fa` | [Font Awesome][fontawesome] | 4.7.0 |
35 | | `foundico` | [Foundation Icons][foundico] | 1.0.0 |
36 | | `geomicon` | [Geomicons Open][geomicon] | 2.0.0 |
37 | | `glyphicons` | [Glyphicons Pro][glyphicons] | 1.9.0 |
38 | | `halflings` | [Glyphicons Halflings][halflings] | 1.9.0 |
39 | | `icofont` | [ShapeBootstrap IcoFont][icofont] | 1.0.0b |
40 | | `line` | [Elegant Theme Line Icons][line] | – |
41 | | `social` | [Glyphicons Social][social] | 1.9.0 |
42 | | `ratchicon` | [Ratchicons][ratchicon] | 2.0.2 |
43 | | `ui` | [Semantic UI Icons][ui] | 2.0.7 |
44 |
45 | Examples:
46 |
47 | * `foundicon-checkmark`+Tab completes to ``
48 | * `glyphicons-check`+Tab completes to ``
49 | * well, you get the idea
50 |
51 | ## License
52 |
53 | This work is licensed under the [The MIT License](LICENSE.md).
54 |
55 | [brandico]: https://github.com/fontello/brandico.font
56 | [fi]: https://github.com/zurb/foundation-icons
57 | [filetypes]: http://glyphicons.com
58 | [fontawesome]: https://fontawesome.com
59 | [foundico]: https://github.com/zurb/foundation-icons/tree/original-implementation
60 | [geomicon]: https://github.com/jxnblk/geomicons-open
61 | [glyphicons]: http://glyphicons.com
62 | [halflings]: http://glyphicons.com
63 | [icofont]: http://icofont.com/
64 | [line]: https://www.elegantthemes.com/blog/resources/elegant-icon-font
65 | [ratchicon]: http://github.com/twbs/ratchet
66 | [social]: http://glyphicons.com
67 | [ui]: http://semantic-ui.com/elements/icon.html
68 |
--------------------------------------------------------------------------------
/snippets/ratchicon--css.json:
--------------------------------------------------------------------------------
1 | {
2 | ".source.css .meta.property-list.css, .source.css.scss .meta.property-list.scss, .source.less .meta.property-list.less, .source.sass, .source.stylus .meta.property-list.stylus": {
3 | "icon-back": {
4 | "body": "content: '\\\\e80a';$0",
5 | "description": "content",
6 | "prefix": "icon-back"
7 | },
8 | "icon-bars": {
9 | "body": "content: '\\\\e80e';$0",
10 | "description": "content",
11 | "prefix": "icon-bars"
12 | },
13 | "icon-caret": {
14 | "body": "content: '\\\\e80f';$0",
15 | "description": "content",
16 | "prefix": "icon-caret"
17 | },
18 | "icon-check": {
19 | "body": "content: '\\\\e810';$0",
20 | "description": "content",
21 | "prefix": "icon-check"
22 | },
23 | "icon-close": {
24 | "body": "content: '\\\\e811';$0",
25 | "description": "content",
26 | "prefix": "icon-close"
27 | },
28 | "icon-code": {
29 | "body": "content: '\\\\e812';$0",
30 | "description": "content",
31 | "prefix": "icon-code"
32 | },
33 | "icon-compose": {
34 | "body": "content: '\\\\e813';$0",
35 | "description": "content",
36 | "prefix": "icon-compose"
37 | },
38 | "icon-down": {
39 | "body": "content: '\\\\e820';$0",
40 | "description": "content",
41 | "prefix": "icon-down"
42 | },
43 | "icon-down-nav": {
44 | "body": "content: '\\\\e814';$0",
45 | "description": "content",
46 | "prefix": "icon-down-nav"
47 | },
48 | "icon-download": {
49 | "body": "content: '\\\\e815';$0",
50 | "description": "content",
51 | "prefix": "icon-download"
52 | },
53 | "icon-edit": {
54 | "body": "content: '\\\\e829';$0",
55 | "description": "content",
56 | "prefix": "icon-edit"
57 | },
58 | "icon-forward": {
59 | "body": "content: '\\\\e82a';$0",
60 | "description": "content",
61 | "prefix": "icon-forward"
62 | },
63 | "icon-gear": {
64 | "body": "content: '\\\\e821';$0",
65 | "description": "content",
66 | "prefix": "icon-gear"
67 | },
68 | "icon-home": {
69 | "body": "content: '\\\\e82b';$0",
70 | "description": "content",
71 | "prefix": "icon-home"
72 | },
73 | "icon-info": {
74 | "body": "content: '\\\\e82c';$0",
75 | "description": "content",
76 | "prefix": "icon-info"
77 | },
78 | "icon-left": {
79 | "body": "content: '\\\\e822';$0",
80 | "description": "content",
81 | "prefix": "icon-left"
82 | },
83 | "icon-left-nav": {
84 | "body": "content: '\\\\e82d';$0",
85 | "description": "content",
86 | "prefix": "icon-left-nav"
87 | },
88 | "icon-list": {
89 | "body": "content: '\\\\e823';$0",
90 | "description": "content",
91 | "prefix": "icon-list"
92 | },
93 | "icon-more": {
94 | "body": "content: '\\\\e82f';$0",
95 | "description": "content",
96 | "prefix": "icon-more"
97 | },
98 | "icon-more-vertical": {
99 | "body": "content: '\\\\e82e';$0",
100 | "description": "content",
101 | "prefix": "icon-more-vertical"
102 | },
103 | "icon-pages": {
104 | "body": "content: '\\\\e824';$0",
105 | "description": "content",
106 | "prefix": "icon-pages"
107 | },
108 | "icon-pause": {
109 | "body": "content: '\\\\e830';$0",
110 | "description": "content",
111 | "prefix": "icon-pause"
112 | },
113 | "icon-person": {
114 | "body": "content: '\\\\e832';$0",
115 | "description": "content",
116 | "prefix": "icon-person"
117 | },
118 | "icon-play": {
119 | "body": "content: '\\\\e816';$0",
120 | "description": "content",
121 | "prefix": "icon-play"
122 | },
123 | "icon-plus": {
124 | "body": "content: '\\\\e817';$0",
125 | "description": "content",
126 | "prefix": "icon-plus"
127 | },
128 | "icon-refresh": {
129 | "body": "content: '\\\\e825';$0",
130 | "description": "content",
131 | "prefix": "icon-refresh"
132 | },
133 | "icon-right": {
134 | "body": "content: '\\\\e826';$0",
135 | "description": "content",
136 | "prefix": "icon-right"
137 | },
138 | "icon-right-nav": {
139 | "body": "content: '\\\\e818';$0",
140 | "description": "content",
141 | "prefix": "icon-right-nav"
142 | },
143 | "icon-search": {
144 | "body": "content: '\\\\e819';$0",
145 | "description": "content",
146 | "prefix": "icon-search"
147 | },
148 | "icon-share": {
149 | "body": "content: '\\\\e81a';$0",
150 | "description": "content",
151 | "prefix": "icon-share"
152 | },
153 | "icon-sound": {
154 | "body": "content: '\\\\e827';$0",
155 | "description": "content",
156 | "prefix": "icon-sound"
157 | },
158 | "icon-sound2": {
159 | "body": "content: '\\\\e828';$0",
160 | "description": "content",
161 | "prefix": "icon-sound2"
162 | },
163 | "icon-sound3": {
164 | "body": "content: '\\\\e80b';$0",
165 | "description": "content",
166 | "prefix": "icon-sound3"
167 | },
168 | "icon-sound4": {
169 | "body": "content: '\\\\e80c';$0",
170 | "description": "content",
171 | "prefix": "icon-sound4"
172 | },
173 | "icon-star": {
174 | "body": "content: '\\\\e81c';$0",
175 | "description": "content",
176 | "prefix": "icon-star"
177 | },
178 | "icon-star-filled": {
179 | "body": "content: '\\\\e81b';$0",
180 | "description": "content",
181 | "prefix": "icon-star-filled"
182 | },
183 | "icon-stop": {
184 | "body": "content: '\\\\e81d';$0",
185 | "description": "content",
186 | "prefix": "icon-stop"
187 | },
188 | "icon-trash": {
189 | "body": "content: '\\\\e81e';$0",
190 | "description": "content",
191 | "prefix": "icon-trash"
192 | },
193 | "icon-up": {
194 | "body": "content: '\\\\e80d';$0",
195 | "description": "content",
196 | "prefix": "icon-up"
197 | },
198 | "icon-up-nav": {
199 | "body": "content: '\\\\e81f';$0",
200 | "description": "content",
201 | "prefix": "icon-up-nav"
202 | }
203 | }
204 | }
--------------------------------------------------------------------------------
/snippets/ratchicon--html.json:
--------------------------------------------------------------------------------
1 | {
2 | ".source.svelte, .text.html": {
3 | "icon-back": {
4 | "body": "<${1:span} class=\"icon icon-back\">${1:span}>$0",
5 | "description": "",
6 | "prefix": "icon-back"
7 | },
8 | "icon-bars": {
9 | "body": "<${1:span} class=\"icon icon-bars\">${1:span}>$0",
10 | "description": "",
11 | "prefix": "icon-bars"
12 | },
13 | "icon-caret": {
14 | "body": "<${1:span} class=\"icon icon-caret\">${1:span}>$0",
15 | "description": "",
16 | "prefix": "icon-caret"
17 | },
18 | "icon-check": {
19 | "body": "<${1:span} class=\"icon icon-check\">${1:span}>$0",
20 | "description": "",
21 | "prefix": "icon-check"
22 | },
23 | "icon-close": {
24 | "body": "<${1:span} class=\"icon icon-close\">${1:span}>$0",
25 | "description": "",
26 | "prefix": "icon-close"
27 | },
28 | "icon-code": {
29 | "body": "<${1:span} class=\"icon icon-code\">${1:span}>$0",
30 | "description": "",
31 | "prefix": "icon-code"
32 | },
33 | "icon-compose": {
34 | "body": "<${1:span} class=\"icon icon-compose\">${1:span}>$0",
35 | "description": "",
36 | "prefix": "icon-compose"
37 | },
38 | "icon-down": {
39 | "body": "<${1:span} class=\"icon icon-down\">${1:span}>$0",
40 | "description": "",
41 | "prefix": "icon-down"
42 | },
43 | "icon-down-nav": {
44 | "body": "<${1:span} class=\"icon icon-down-nav\">${1:span}>$0",
45 | "description": "",
46 | "prefix": "icon-down-nav"
47 | },
48 | "icon-download": {
49 | "body": "<${1:span} class=\"icon icon-download\">${1:span}>$0",
50 | "description": "",
51 | "prefix": "icon-download"
52 | },
53 | "icon-edit": {
54 | "body": "<${1:span} class=\"icon icon-edit\">${1:span}>$0",
55 | "description": "",
56 | "prefix": "icon-edit"
57 | },
58 | "icon-forward": {
59 | "body": "<${1:span} class=\"icon icon-forward\">${1:span}>$0",
60 | "description": "",
61 | "prefix": "icon-forward"
62 | },
63 | "icon-gear": {
64 | "body": "<${1:span} class=\"icon icon-gear\">${1:span}>$0",
65 | "description": "",
66 | "prefix": "icon-gear"
67 | },
68 | "icon-home": {
69 | "body": "<${1:span} class=\"icon icon-home\">${1:span}>$0",
70 | "description": "",
71 | "prefix": "icon-home"
72 | },
73 | "icon-info": {
74 | "body": "<${1:span} class=\"icon icon-info\">${1:span}>$0",
75 | "description": "",
76 | "prefix": "icon-info"
77 | },
78 | "icon-left": {
79 | "body": "<${1:span} class=\"icon icon-left\">${1:span}>$0",
80 | "description": "",
81 | "prefix": "icon-left"
82 | },
83 | "icon-left-nav": {
84 | "body": "<${1:span} class=\"icon icon-left-nav\">${1:span}>$0",
85 | "description": "",
86 | "prefix": "icon-left-nav"
87 | },
88 | "icon-list": {
89 | "body": "<${1:span} class=\"icon icon-list\">${1:span}>$0",
90 | "description": "",
91 | "prefix": "icon-list"
92 | },
93 | "icon-more": {
94 | "body": "<${1:span} class=\"icon icon-more\">${1:span}>$0",
95 | "description": "",
96 | "prefix": "icon-more"
97 | },
98 | "icon-more-vertical": {
99 | "body": "<${1:span} class=\"icon icon-more-vertical\">${1:span}>$0",
100 | "description": "",
101 | "prefix": "icon-more-vertical"
102 | },
103 | "icon-pages": {
104 | "body": "<${1:span} class=\"icon icon-pages\">${1:span}>$0",
105 | "description": "",
106 | "prefix": "icon-pages"
107 | },
108 | "icon-pause": {
109 | "body": "<${1:span} class=\"icon icon-pause\">${1:span}>$0",
110 | "description": "",
111 | "prefix": "icon-pause"
112 | },
113 | "icon-person": {
114 | "body": "<${1:span} class=\"icon icon-person\">${1:span}>$0",
115 | "description": "",
116 | "prefix": "icon-person"
117 | },
118 | "icon-play": {
119 | "body": "<${1:span} class=\"icon icon-play\">${1:span}>$0",
120 | "description": "",
121 | "prefix": "icon-play"
122 | },
123 | "icon-plus": {
124 | "body": "<${1:span} class=\"icon icon-plus\">${1:span}>$0",
125 | "description": "",
126 | "prefix": "icon-plus"
127 | },
128 | "icon-refresh": {
129 | "body": "<${1:span} class=\"icon icon-refresh\">${1:span}>$0",
130 | "description": "",
131 | "prefix": "icon-refresh"
132 | },
133 | "icon-right": {
134 | "body": "<${1:span} class=\"icon icon-right\">${1:span}>$0",
135 | "description": "",
136 | "prefix": "icon-right"
137 | },
138 | "icon-right-nav": {
139 | "body": "<${1:span} class=\"icon icon-right-nav\">${1:span}>$0",
140 | "description": "",
141 | "prefix": "icon-right-nav"
142 | },
143 | "icon-search": {
144 | "body": "<${1:span} class=\"icon icon-search\">${1:span}>$0",
145 | "description": "",
146 | "prefix": "icon-search"
147 | },
148 | "icon-share": {
149 | "body": "<${1:span} class=\"icon icon-share\">${1:span}>$0",
150 | "description": "",
151 | "prefix": "icon-share"
152 | },
153 | "icon-sound": {
154 | "body": "<${1:span} class=\"icon icon-sound\">${1:span}>$0",
155 | "description": "",
156 | "prefix": "icon-sound"
157 | },
158 | "icon-sound2": {
159 | "body": "<${1:span} class=\"icon icon-sound2\">${1:span}>$0",
160 | "description": "",
161 | "prefix": "icon-sound2"
162 | },
163 | "icon-sound3": {
164 | "body": "<${1:span} class=\"icon icon-sound3\">${1:span}>$0",
165 | "description": "",
166 | "prefix": "icon-sound3"
167 | },
168 | "icon-sound4": {
169 | "body": "<${1:span} class=\"icon icon-sound4\">${1:span}>$0",
170 | "description": "",
171 | "prefix": "icon-sound4"
172 | },
173 | "icon-star": {
174 | "body": "<${1:span} class=\"icon icon-star\">${1:span}>$0",
175 | "description": "",
176 | "prefix": "icon-star"
177 | },
178 | "icon-star-filled": {
179 | "body": "<${1:span} class=\"icon icon-star-filled\">${1:span}>$0",
180 | "description": "",
181 | "prefix": "icon-star-filled"
182 | },
183 | "icon-stop": {
184 | "body": "<${1:span} class=\"icon icon-stop\">${1:span}>$0",
185 | "description": "",
186 | "prefix": "icon-stop"
187 | },
188 | "icon-trash": {
189 | "body": "<${1:span} class=\"icon icon-trash\">${1:span}>$0",
190 | "description": "",
191 | "prefix": "icon-trash"
192 | },
193 | "icon-up": {
194 | "body": "<${1:span} class=\"icon icon-up\">${1:span}>$0",
195 | "description": "",
196 | "prefix": "icon-up"
197 | },
198 | "icon-up-nav": {
199 | "body": "<${1:span} class=\"icon icon-up-nav\">${1:span}>$0",
200 | "description": "",
201 | "prefix": "icon-up-nav"
202 | }
203 | }
204 | }
--------------------------------------------------------------------------------
/snippets/ratchicon--jsx.json:
--------------------------------------------------------------------------------
1 | {
2 | ".source.js.jsx": {
3 | "icon-back": {
4 | "body": "<${1:span} className=\"icon icon-back\">${1:span}>$0",
5 | "description": "",
6 | "prefix": "icon-back"
7 | },
8 | "icon-bars": {
9 | "body": "<${1:span} className=\"icon icon-bars\">${1:span}>$0",
10 | "description": "",
11 | "prefix": "icon-bars"
12 | },
13 | "icon-caret": {
14 | "body": "<${1:span} className=\"icon icon-caret\">${1:span}>$0",
15 | "description": "",
16 | "prefix": "icon-caret"
17 | },
18 | "icon-check": {
19 | "body": "<${1:span} className=\"icon icon-check\">${1:span}>$0",
20 | "description": "",
21 | "prefix": "icon-check"
22 | },
23 | "icon-close": {
24 | "body": "<${1:span} className=\"icon icon-close\">${1:span}>$0",
25 | "description": "",
26 | "prefix": "icon-close"
27 | },
28 | "icon-code": {
29 | "body": "<${1:span} className=\"icon icon-code\">${1:span}>$0",
30 | "description": "",
31 | "prefix": "icon-code"
32 | },
33 | "icon-compose": {
34 | "body": "<${1:span} className=\"icon icon-compose\">${1:span}>$0",
35 | "description": "",
36 | "prefix": "icon-compose"
37 | },
38 | "icon-down": {
39 | "body": "<${1:span} className=\"icon icon-down\">${1:span}>$0",
40 | "description": "",
41 | "prefix": "icon-down"
42 | },
43 | "icon-down-nav": {
44 | "body": "<${1:span} className=\"icon icon-down-nav\">${1:span}>$0",
45 | "description": "",
46 | "prefix": "icon-down-nav"
47 | },
48 | "icon-download": {
49 | "body": "<${1:span} className=\"icon icon-download\">${1:span}>$0",
50 | "description": "",
51 | "prefix": "icon-download"
52 | },
53 | "icon-edit": {
54 | "body": "<${1:span} className=\"icon icon-edit\">${1:span}>$0",
55 | "description": "",
56 | "prefix": "icon-edit"
57 | },
58 | "icon-forward": {
59 | "body": "<${1:span} className=\"icon icon-forward\">${1:span}>$0",
60 | "description": "",
61 | "prefix": "icon-forward"
62 | },
63 | "icon-gear": {
64 | "body": "<${1:span} className=\"icon icon-gear\">${1:span}>$0",
65 | "description": "",
66 | "prefix": "icon-gear"
67 | },
68 | "icon-home": {
69 | "body": "<${1:span} className=\"icon icon-home\">${1:span}>$0",
70 | "description": "",
71 | "prefix": "icon-home"
72 | },
73 | "icon-info": {
74 | "body": "<${1:span} className=\"icon icon-info\">${1:span}>$0",
75 | "description": "",
76 | "prefix": "icon-info"
77 | },
78 | "icon-left": {
79 | "body": "<${1:span} className=\"icon icon-left\">${1:span}>$0",
80 | "description": "",
81 | "prefix": "icon-left"
82 | },
83 | "icon-left-nav": {
84 | "body": "<${1:span} className=\"icon icon-left-nav\">${1:span}>$0",
85 | "description": "",
86 | "prefix": "icon-left-nav"
87 | },
88 | "icon-list": {
89 | "body": "<${1:span} className=\"icon icon-list\">${1:span}>$0",
90 | "description": "",
91 | "prefix": "icon-list"
92 | },
93 | "icon-more": {
94 | "body": "<${1:span} className=\"icon icon-more\">${1:span}>$0",
95 | "description": "",
96 | "prefix": "icon-more"
97 | },
98 | "icon-more-vertical": {
99 | "body": "<${1:span} className=\"icon icon-more-vertical\">${1:span}>$0",
100 | "description": "",
101 | "prefix": "icon-more-vertical"
102 | },
103 | "icon-pages": {
104 | "body": "<${1:span} className=\"icon icon-pages\">${1:span}>$0",
105 | "description": "",
106 | "prefix": "icon-pages"
107 | },
108 | "icon-pause": {
109 | "body": "<${1:span} className=\"icon icon-pause\">${1:span}>$0",
110 | "description": "",
111 | "prefix": "icon-pause"
112 | },
113 | "icon-person": {
114 | "body": "<${1:span} className=\"icon icon-person\">${1:span}>$0",
115 | "description": "",
116 | "prefix": "icon-person"
117 | },
118 | "icon-play": {
119 | "body": "<${1:span} className=\"icon icon-play\">${1:span}>$0",
120 | "description": "",
121 | "prefix": "icon-play"
122 | },
123 | "icon-plus": {
124 | "body": "<${1:span} className=\"icon icon-plus\">${1:span}>$0",
125 | "description": "",
126 | "prefix": "icon-plus"
127 | },
128 | "icon-refresh": {
129 | "body": "<${1:span} className=\"icon icon-refresh\">${1:span}>$0",
130 | "description": "",
131 | "prefix": "icon-refresh"
132 | },
133 | "icon-right": {
134 | "body": "<${1:span} className=\"icon icon-right\">${1:span}>$0",
135 | "description": "",
136 | "prefix": "icon-right"
137 | },
138 | "icon-right-nav": {
139 | "body": "<${1:span} className=\"icon icon-right-nav\">${1:span}>$0",
140 | "description": "",
141 | "prefix": "icon-right-nav"
142 | },
143 | "icon-search": {
144 | "body": "<${1:span} className=\"icon icon-search\">${1:span}>$0",
145 | "description": "",
146 | "prefix": "icon-search"
147 | },
148 | "icon-share": {
149 | "body": "<${1:span} className=\"icon icon-share\">${1:span}>$0",
150 | "description": "",
151 | "prefix": "icon-share"
152 | },
153 | "icon-sound": {
154 | "body": "<${1:span} className=\"icon icon-sound\">${1:span}>$0",
155 | "description": "",
156 | "prefix": "icon-sound"
157 | },
158 | "icon-sound2": {
159 | "body": "<${1:span} className=\"icon icon-sound2\">${1:span}>$0",
160 | "description": "",
161 | "prefix": "icon-sound2"
162 | },
163 | "icon-sound3": {
164 | "body": "<${1:span} className=\"icon icon-sound3\">${1:span}>$0",
165 | "description": "",
166 | "prefix": "icon-sound3"
167 | },
168 | "icon-sound4": {
169 | "body": "<${1:span} className=\"icon icon-sound4\">${1:span}>$0",
170 | "description": "",
171 | "prefix": "icon-sound4"
172 | },
173 | "icon-star": {
174 | "body": "<${1:span} className=\"icon icon-star\">${1:span}>$0",
175 | "description": "",
176 | "prefix": "icon-star"
177 | },
178 | "icon-star-filled": {
179 | "body": "<${1:span} className=\"icon icon-star-filled\">${1:span}>$0",
180 | "description": "",
181 | "prefix": "icon-star-filled"
182 | },
183 | "icon-stop": {
184 | "body": "<${1:span} className=\"icon icon-stop\">${1:span}>$0",
185 | "description": "",
186 | "prefix": "icon-stop"
187 | },
188 | "icon-trash": {
189 | "body": "<${1:span} className=\"icon icon-trash\">${1:span}>$0",
190 | "description": "",
191 | "prefix": "icon-trash"
192 | },
193 | "icon-up": {
194 | "body": "<${1:span} className=\"icon icon-up\">${1:span}>$0",
195 | "description": "",
196 | "prefix": "icon-up"
197 | },
198 | "icon-up-nav": {
199 | "body": "<${1:span} className=\"icon icon-up-nav\">${1:span}>$0",
200 | "description": "",
201 | "prefix": "icon-up-nav"
202 | }
203 | }
204 | }
--------------------------------------------------------------------------------
/snippets/brandico-css.json:
--------------------------------------------------------------------------------
1 | {
2 | ".source.css meta.property-list.css, source.less, source.sass, source.scss meta.property-list.scss, source.stylus": {
3 | "brandico-amex": {
4 | "body": "content: '\\\\f326';",
5 | "description": "content",
6 | "prefix": "brandico-amex"
7 | },
8 | "brandico-bandcamp": {
9 | "body": "content: '\\\\f32b';",
10 | "description": "content",
11 | "prefix": "brandico-bandcamp"
12 | },
13 | "brandico-blogger": {
14 | "body": "content: '\\\\f314';",
15 | "description": "content",
16 | "prefix": "brandico-blogger"
17 | },
18 | "brandico-blogger-rect": {
19 | "body": "content: '\\\\f315';",
20 | "description": "content",
21 | "prefix": "brandico-blogger-rect"
22 | },
23 | "brandico-box": {
24 | "body": "content: '\\\\f321';",
25 | "description": "content",
26 | "prefix": "brandico-box"
27 | },
28 | "brandico-box-rect": {
29 | "body": "content: '\\\\f322';",
30 | "description": "content",
31 | "prefix": "brandico-box-rect"
32 | },
33 | "brandico-codepen": {
34 | "body": "content: '\\\\f32c';",
35 | "description": "content",
36 | "prefix": "brandico-codepen"
37 | },
38 | "brandico-deviantart": {
39 | "body": "content: '\\\\f316';",
40 | "description": "content",
41 | "prefix": "brandico-deviantart"
42 | },
43 | "brandico-diigo": {
44 | "body": "content: '\\\\f320';",
45 | "description": "content",
46 | "prefix": "brandico-diigo"
47 | },
48 | "brandico-discover": {
49 | "body": "content: '\\\\f327';",
50 | "description": "content",
51 | "prefix": "brandico-discover"
52 | },
53 | "brandico-facebook": {
54 | "body": "content: '\\\\f300';",
55 | "description": "content",
56 | "prefix": "brandico-facebook"
57 | },
58 | "brandico-facebook-rect": {
59 | "body": "content: '\\\\f301';",
60 | "description": "content",
61 | "prefix": "brandico-facebook-rect"
62 | },
63 | "brandico-friendfeed": {
64 | "body": "content: '\\\\f312';",
65 | "description": "content",
66 | "prefix": "brandico-friendfeed"
67 | },
68 | "brandico-friendfeed-rect": {
69 | "body": "content: '\\\\f313';",
70 | "description": "content",
71 | "prefix": "brandico-friendfeed-rect"
72 | },
73 | "brandico-github": {
74 | "body": "content: '\\\\f308';",
75 | "description": "content",
76 | "prefix": "brandico-github"
77 | },
78 | "brandico-github-text": {
79 | "body": "content: '\\\\f307';",
80 | "description": "content",
81 | "prefix": "brandico-github-text"
82 | },
83 | "brandico-googleplus-rect": {
84 | "body": "content: '\\\\f309';",
85 | "description": "content",
86 | "prefix": "brandico-googleplus-rect"
87 | },
88 | "brandico-houzz": {
89 | "body": "content: '\\\\f32a';",
90 | "description": "content",
91 | "prefix": "brandico-houzz"
92 | },
93 | "brandico-icq": {
94 | "body": "content: '\\\\f304';",
95 | "description": "content",
96 | "prefix": "brandico-icq"
97 | },
98 | "brandico-instagram": {
99 | "body": "content: '\\\\f31e';",
100 | "description": "content",
101 | "prefix": "brandico-instagram"
102 | },
103 | "brandico-instagram-filled": {
104 | "body": "content: '\\\\f31f';",
105 | "description": "content",
106 | "prefix": "brandico-instagram-filled"
107 | },
108 | "brandico-jabber": {
109 | "body": "content: '\\\\f317';",
110 | "description": "content",
111 | "prefix": "brandico-jabber"
112 | },
113 | "brandico-lastfm": {
114 | "body": "content: '\\\\f318';",
115 | "description": "content",
116 | "prefix": "brandico-lastfm"
117 | },
118 | "brandico-lastfm-rect": {
119 | "body": "content: '\\\\f319';",
120 | "description": "content",
121 | "prefix": "brandico-lastfm-rect"
122 | },
123 | "brandico-linkedin": {
124 | "body": "content: '\\\\f31a';",
125 | "description": "content",
126 | "prefix": "brandico-linkedin"
127 | },
128 | "brandico-linkedin-rect": {
129 | "body": "content: '\\\\f31b';",
130 | "description": "content",
131 | "prefix": "brandico-linkedin-rect"
132 | },
133 | "brandico-mastercard": {
134 | "body": "content: '\\\\f329';",
135 | "description": "content",
136 | "prefix": "brandico-mastercard"
137 | },
138 | "brandico-odnoklassniki": {
139 | "body": "content: '\\\\f30c';",
140 | "description": "content",
141 | "prefix": "brandico-odnoklassniki"
142 | },
143 | "brandico-odnoklassniki-rect": {
144 | "body": "content: '\\\\f30d';",
145 | "description": "content",
146 | "prefix": "brandico-odnoklassniki-rect"
147 | },
148 | "brandico-picasa": {
149 | "body": "content: '\\\\f31c';",
150 | "description": "content",
151 | "prefix": "brandico-picasa"
152 | },
153 | "brandico-skype": {
154 | "body": "content: '\\\\f30b';",
155 | "description": "content",
156 | "prefix": "brandico-skype"
157 | },
158 | "brandico-tudou": {
159 | "body": "content: '\\\\f323';",
160 | "description": "content",
161 | "prefix": "brandico-tudou"
162 | },
163 | "brandico-tumblr": {
164 | "body": "content: '\\\\f311';",
165 | "description": "content",
166 | "prefix": "brandico-tumblr"
167 | },
168 | "brandico-tumblr-rect": {
169 | "body": "content: '\\\\f310';",
170 | "description": "content",
171 | "prefix": "brandico-tumblr-rect"
172 | },
173 | "brandico-twitter": {
174 | "body": "content: '\\\\f302';",
175 | "description": "content",
176 | "prefix": "brandico-twitter"
177 | },
178 | "brandico-twitter-bird": {
179 | "body": "content: '\\\\f303';",
180 | "description": "content",
181 | "prefix": "brandico-twitter-bird"
182 | },
183 | "brandico-vimeo": {
184 | "body": "content: '\\\\f30f';",
185 | "description": "content",
186 | "prefix": "brandico-vimeo"
187 | },
188 | "brandico-vimeo-rect": {
189 | "body": "content: '\\\\f30e';",
190 | "description": "content",
191 | "prefix": "brandico-vimeo-rect"
192 | },
193 | "brandico-visa": {
194 | "body": "content: '\\\\f328';",
195 | "description": "content",
196 | "prefix": "brandico-visa"
197 | },
198 | "brandico-vkontakte-rect": {
199 | "body": "content: '\\\\f30a';",
200 | "description": "content",
201 | "prefix": "brandico-vkontakte-rect"
202 | },
203 | "brandico-win8": {
204 | "body": "content: '\\\\f325';",
205 | "description": "content",
206 | "prefix": "brandico-win8"
207 | },
208 | "brandico-wordpress": {
209 | "body": "content: '\\\\f31d';",
210 | "description": "content",
211 | "prefix": "brandico-wordpress"
212 | },
213 | "brandico-yandex": {
214 | "body": "content: '\\\\f305';",
215 | "description": "content",
216 | "prefix": "brandico-yandex"
217 | },
218 | "brandico-yandex-rect": {
219 | "body": "content: '\\\\f306';",
220 | "description": "content",
221 | "prefix": "brandico-yandex-rect"
222 | },
223 | "brandico-youku": {
224 | "body": "content: '\\\\f324';",
225 | "description": "content",
226 | "prefix": "brandico-youku"
227 | }
228 | }
229 | }
--------------------------------------------------------------------------------
/snippets/brandico.json:
--------------------------------------------------------------------------------
1 | {
2 | ".source.svelte, .text.html": {
3 | "brandico-amex": {
4 | "body": "<${1:i} class=\"icon-amex$2\">${1:i}>$0",
5 | "description": "",
6 | "prefix": "brandico-amex"
7 | },
8 | "brandico-bandcamp": {
9 | "body": "<${1:i} class=\"icon-bandcamp$2\">${1:i}>$0",
10 | "description": "",
11 | "prefix": "brandico-bandcamp"
12 | },
13 | "brandico-blogger": {
14 | "body": "<${1:i} class=\"icon-blogger$2\">${1:i}>$0",
15 | "description": "",
16 | "prefix": "brandico-blogger"
17 | },
18 | "brandico-blogger-rect": {
19 | "body": "<${1:i} class=\"icon-blogger-rect$2\">${1:i}>$0",
20 | "description": "",
21 | "prefix": "brandico-blogger-rect"
22 | },
23 | "brandico-box": {
24 | "body": "<${1:i} class=\"icon-box$2\">${1:i}>$0",
25 | "description": "",
26 | "prefix": "brandico-box"
27 | },
28 | "brandico-box-rect": {
29 | "body": "<${1:i} class=\"icon-box-rect$2\">${1:i}>$0",
30 | "description": "",
31 | "prefix": "brandico-box-rect"
32 | },
33 | "brandico-codepen": {
34 | "body": "<${1:i} class=\"icon-codepen$2\">${1:i}>$0",
35 | "description": "",
36 | "prefix": "brandico-codepen"
37 | },
38 | "brandico-deviantart": {
39 | "body": "<${1:i} class=\"icon-deviantart$2\">${1:i}>$0",
40 | "description": "",
41 | "prefix": "brandico-deviantart"
42 | },
43 | "brandico-diigo": {
44 | "body": "<${1:i} class=\"icon-diigo$2\">${1:i}>$0",
45 | "description": "",
46 | "prefix": "brandico-diigo"
47 | },
48 | "brandico-discover": {
49 | "body": "<${1:i} class=\"icon-discover$2\">${1:i}>$0",
50 | "description": "",
51 | "prefix": "brandico-discover"
52 | },
53 | "brandico-facebook": {
54 | "body": "<${1:i} class=\"icon-facebook$2\">${1:i}>$0",
55 | "description": "",
56 | "prefix": "brandico-facebook"
57 | },
58 | "brandico-facebook-rect": {
59 | "body": "<${1:i} class=\"icon-facebook-rect$2\">${1:i}>$0",
60 | "description": "",
61 | "prefix": "brandico-facebook-rect"
62 | },
63 | "brandico-friendfeed": {
64 | "body": "<${1:i} class=\"icon-friendfeed$2\">${1:i}>$0",
65 | "description": "",
66 | "prefix": "brandico-friendfeed"
67 | },
68 | "brandico-friendfeed-rect": {
69 | "body": "<${1:i} class=\"icon-friendfeed-rect$2\">${1:i}>$0",
70 | "description": "",
71 | "prefix": "brandico-friendfeed-rect"
72 | },
73 | "brandico-github": {
74 | "body": "<${1:i} class=\"icon-github$2\">${1:i}>$0",
75 | "description": "",
76 | "prefix": "brandico-github"
77 | },
78 | "brandico-github-text": {
79 | "body": "<${1:i} class=\"icon-github-text$2\">${1:i}>$0",
80 | "description": "",
81 | "prefix": "brandico-github-text"
82 | },
83 | "brandico-googleplus-rect": {
84 | "body": "<${1:i} class=\"icon-googleplus-rect$2\">${1:i}>$0",
85 | "description": "",
86 | "prefix": "brandico-googleplus-rect"
87 | },
88 | "brandico-houzz": {
89 | "body": "<${1:i} class=\"icon-houzz$2\">${1:i}>$0",
90 | "description": "",
91 | "prefix": "brandico-houzz"
92 | },
93 | "brandico-icq": {
94 | "body": "<${1:i} class=\"icon-icq$2\">${1:i}>$0",
95 | "description": "",
96 | "prefix": "brandico-icq"
97 | },
98 | "brandico-instagram": {
99 | "body": "<${1:i} class=\"icon-instagram$2\">${1:i}>$0",
100 | "description": "",
101 | "prefix": "brandico-instagram"
102 | },
103 | "brandico-instagram-filled": {
104 | "body": "<${1:i} class=\"icon-instagram-filled$2\">${1:i}>$0",
105 | "description": "",
106 | "prefix": "brandico-instagram-filled"
107 | },
108 | "brandico-jabber": {
109 | "body": "<${1:i} class=\"icon-jabber$2\">${1:i}>$0",
110 | "description": "",
111 | "prefix": "brandico-jabber"
112 | },
113 | "brandico-lastfm": {
114 | "body": "<${1:i} class=\"icon-lastfm$2\">${1:i}>$0",
115 | "description": "",
116 | "prefix": "brandico-lastfm"
117 | },
118 | "brandico-lastfm-rect": {
119 | "body": "<${1:i} class=\"icon-lastfm-rect$2\">${1:i}>$0",
120 | "description": "",
121 | "prefix": "brandico-lastfm-rect"
122 | },
123 | "brandico-linkedin": {
124 | "body": "<${1:i} class=\"icon-linkedin$2\">${1:i}>$0",
125 | "description": "",
126 | "prefix": "brandico-linkedin"
127 | },
128 | "brandico-linkedin-rect": {
129 | "body": "<${1:i} class=\"icon-linkedin-rect$2\">${1:i}>$0",
130 | "description": "",
131 | "prefix": "brandico-linkedin-rect"
132 | },
133 | "brandico-mastercard": {
134 | "body": "<${1:i} class=\"icon-mastercard$2\">${1:i}>$0",
135 | "description": "",
136 | "prefix": "brandico-mastercard"
137 | },
138 | "brandico-odnoklassniki": {
139 | "body": "<${1:i} class=\"icon-odnoklassniki$2\">${1:i}>$0",
140 | "description": "",
141 | "prefix": "brandico-odnoklassniki"
142 | },
143 | "brandico-odnoklassniki-rect": {
144 | "body": "<${1:i} class=\"icon-odnoklassniki-rect$2\">${1:i}>$0",
145 | "description": "",
146 | "prefix": "brandico-odnoklassniki-rect"
147 | },
148 | "brandico-picasa": {
149 | "body": "<${1:i} class=\"icon-picasa$2\">${1:i}>$0",
150 | "description": "",
151 | "prefix": "brandico-picasa"
152 | },
153 | "brandico-skype": {
154 | "body": "<${1:i} class=\"icon-skype$2\">${1:i}>$0",
155 | "description": "",
156 | "prefix": "brandico-skype"
157 | },
158 | "brandico-tudou": {
159 | "body": "<${1:i} class=\"icon-tudou$2\">${1:i}>$0",
160 | "description": "",
161 | "prefix": "brandico-tudou"
162 | },
163 | "brandico-tumblr": {
164 | "body": "<${1:i} class=\"icon-tumblr$2\">${1:i}>$0",
165 | "description": "",
166 | "prefix": "brandico-tumblr"
167 | },
168 | "brandico-tumblr-rect": {
169 | "body": "<${1:i} class=\"icon-tumblr-rect$2\">${1:i}>$0",
170 | "description": "",
171 | "prefix": "brandico-tumblr-rect"
172 | },
173 | "brandico-twitter": {
174 | "body": "<${1:i} class=\"icon-twitter$2\">${1:i}>$0",
175 | "description": "",
176 | "prefix": "brandico-twitter"
177 | },
178 | "brandico-twitter-bird": {
179 | "body": "<${1:i} class=\"icon-twitter-bird$2\">${1:i}>$0",
180 | "description": "",
181 | "prefix": "brandico-twitter-bird"
182 | },
183 | "brandico-vimeo": {
184 | "body": "<${1:i} class=\"icon-vimeo$2\">${1:i}>$0",
185 | "description": "",
186 | "prefix": "brandico-vimeo"
187 | },
188 | "brandico-vimeo-rect": {
189 | "body": "<${1:i} class=\"icon-vimeo-rect$2\">${1:i}>$0",
190 | "description": "",
191 | "prefix": "brandico-vimeo-rect"
192 | },
193 | "brandico-visa": {
194 | "body": "<${1:i} class=\"icon-visa$2\">${1:i}>$0",
195 | "description": "",
196 | "prefix": "brandico-visa"
197 | },
198 | "brandico-vkontakte-rect": {
199 | "body": "<${1:i} class=\"icon-vkontakte-rect$2\">${1:i}>$0",
200 | "description": "",
201 | "prefix": "brandico-vkontakte-rect"
202 | },
203 | "brandico-win8": {
204 | "body": "<${1:i} class=\"icon-win8$2\">${1:i}>$0",
205 | "description": "",
206 | "prefix": "brandico-win8"
207 | },
208 | "brandico-wordpress": {
209 | "body": "<${1:i} class=\"icon-wordpress$2\">${1:i}>$0",
210 | "description": "",
211 | "prefix": "brandico-wordpress"
212 | },
213 | "brandico-yandex": {
214 | "body": "<${1:i} class=\"icon-yandex$2\">${1:i}>$0",
215 | "description": "",
216 | "prefix": "brandico-yandex"
217 | },
218 | "brandico-yandex-rect": {
219 | "body": "<${1:i} class=\"icon-yandex-rect$2\">${1:i}>$0",
220 | "description": "",
221 | "prefix": "brandico-yandex-rect"
222 | },
223 | "brandico-youku": {
224 | "body": "<${1:i} class=\"icon-youku$2\">${1:i}>$0",
225 | "description": "",
226 | "prefix": "brandico-youku"
227 | }
228 | }
229 | }
--------------------------------------------------------------------------------
/snippets/brandico-jsx.json:
--------------------------------------------------------------------------------
1 | {
2 | ".source.js.jsx": {
3 | "brandico-amex": {
4 | "body": "<${1:i} className=\"icon-amex$2\">${1:i}>$0",
5 | "description": "",
6 | "prefix": "brandico-amex"
7 | },
8 | "brandico-bandcamp": {
9 | "body": "<${1:i} className=\"icon-bandcamp$2\">${1:i}>$0",
10 | "description": "",
11 | "prefix": "brandico-bandcamp"
12 | },
13 | "brandico-blogger": {
14 | "body": "<${1:i} className=\"icon-blogger$2\">${1:i}>$0",
15 | "description": "",
16 | "prefix": "brandico-blogger"
17 | },
18 | "brandico-blogger-rect": {
19 | "body": "<${1:i} className=\"icon-blogger-rect$2\">${1:i}>$0",
20 | "description": "",
21 | "prefix": "brandico-blogger-rect"
22 | },
23 | "brandico-box": {
24 | "body": "<${1:i} className=\"icon-box$2\">${1:i}>$0",
25 | "description": "",
26 | "prefix": "brandico-box"
27 | },
28 | "brandico-box-rect": {
29 | "body": "<${1:i} className=\"icon-box-rect$2\">${1:i}>$0",
30 | "description": "",
31 | "prefix": "brandico-box-rect"
32 | },
33 | "brandico-codepen": {
34 | "body": "<${1:i} className=\"icon-codepen$2\">${1:i}>$0",
35 | "description": "",
36 | "prefix": "brandico-codepen"
37 | },
38 | "brandico-deviantart": {
39 | "body": "<${1:i} className=\"icon-deviantart$2\">${1:i}>$0",
40 | "description": "",
41 | "prefix": "brandico-deviantart"
42 | },
43 | "brandico-diigo": {
44 | "body": "<${1:i} className=\"icon-diigo$2\">${1:i}>$0",
45 | "description": "",
46 | "prefix": "brandico-diigo"
47 | },
48 | "brandico-discover": {
49 | "body": "<${1:i} className=\"icon-discover$2\">${1:i}>$0",
50 | "description": "",
51 | "prefix": "brandico-discover"
52 | },
53 | "brandico-facebook": {
54 | "body": "<${1:i} className=\"icon-facebook$2\">${1:i}>$0",
55 | "description": "",
56 | "prefix": "brandico-facebook"
57 | },
58 | "brandico-facebook-rect": {
59 | "body": "<${1:i} className=\"icon-facebook-rect$2\">${1:i}>$0",
60 | "description": "",
61 | "prefix": "brandico-facebook-rect"
62 | },
63 | "brandico-friendfeed": {
64 | "body": "<${1:i} className=\"icon-friendfeed$2\">${1:i}>$0",
65 | "description": "",
66 | "prefix": "brandico-friendfeed"
67 | },
68 | "brandico-friendfeed-rect": {
69 | "body": "<${1:i} className=\"icon-friendfeed-rect$2\">${1:i}>$0",
70 | "description": "",
71 | "prefix": "brandico-friendfeed-rect"
72 | },
73 | "brandico-github": {
74 | "body": "<${1:i} className=\"icon-github$2\">${1:i}>$0",
75 | "description": "",
76 | "prefix": "brandico-github"
77 | },
78 | "brandico-github-text": {
79 | "body": "<${1:i} className=\"icon-github-text$2\">${1:i}>$0",
80 | "description": "",
81 | "prefix": "brandico-github-text"
82 | },
83 | "brandico-googleplus-rect": {
84 | "body": "<${1:i} className=\"icon-googleplus-rect$2\">${1:i}>$0",
85 | "description": "",
86 | "prefix": "brandico-googleplus-rect"
87 | },
88 | "brandico-houzz": {
89 | "body": "<${1:i} className=\"icon-houzz$2\">${1:i}>$0",
90 | "description": "",
91 | "prefix": "brandico-houzz"
92 | },
93 | "brandico-icq": {
94 | "body": "<${1:i} className=\"icon-icq$2\">${1:i}>$0",
95 | "description": "",
96 | "prefix": "brandico-icq"
97 | },
98 | "brandico-instagram": {
99 | "body": "<${1:i} className=\"icon-instagram$2\">${1:i}>$0",
100 | "description": "",
101 | "prefix": "brandico-instagram"
102 | },
103 | "brandico-instagram-filled": {
104 | "body": "<${1:i} className=\"icon-instagram-filled$2\">${1:i}>$0",
105 | "description": "",
106 | "prefix": "brandico-instagram-filled"
107 | },
108 | "brandico-jabber": {
109 | "body": "<${1:i} className=\"icon-jabber$2\">${1:i}>$0",
110 | "description": "",
111 | "prefix": "brandico-jabber"
112 | },
113 | "brandico-lastfm": {
114 | "body": "<${1:i} className=\"icon-lastfm$2\">${1:i}>$0",
115 | "description": "",
116 | "prefix": "brandico-lastfm"
117 | },
118 | "brandico-lastfm-rect": {
119 | "body": "<${1:i} className=\"icon-lastfm-rect$2\">${1:i}>$0",
120 | "description": "",
121 | "prefix": "brandico-lastfm-rect"
122 | },
123 | "brandico-linkedin": {
124 | "body": "<${1:i} className=\"icon-linkedin$2\">${1:i}>$0",
125 | "description": "",
126 | "prefix": "brandico-linkedin"
127 | },
128 | "brandico-linkedin-rect": {
129 | "body": "<${1:i} className=\"icon-linkedin-rect$2\">${1:i}>$0",
130 | "description": "",
131 | "prefix": "brandico-linkedin-rect"
132 | },
133 | "brandico-mastercard": {
134 | "body": "<${1:i} className=\"icon-mastercard$2\">${1:i}>$0",
135 | "description": "",
136 | "prefix": "brandico-mastercard"
137 | },
138 | "brandico-odnoklassniki": {
139 | "body": "<${1:i} className=\"icon-odnoklassniki$2\">${1:i}>$0",
140 | "description": "",
141 | "prefix": "brandico-odnoklassniki"
142 | },
143 | "brandico-odnoklassniki-rect": {
144 | "body": "<${1:i} className=\"icon-odnoklassniki-rect$2\">${1:i}>$0",
145 | "description": "",
146 | "prefix": "brandico-odnoklassniki-rect"
147 | },
148 | "brandico-picasa": {
149 | "body": "<${1:i} className=\"icon-picasa$2\">${1:i}>$0",
150 | "description": "",
151 | "prefix": "brandico-picasa"
152 | },
153 | "brandico-skype": {
154 | "body": "<${1:i} className=\"icon-skype$2\">${1:i}>$0",
155 | "description": "",
156 | "prefix": "brandico-skype"
157 | },
158 | "brandico-tudou": {
159 | "body": "<${1:i} className=\"icon-tudou$2\">${1:i}>$0",
160 | "description": "",
161 | "prefix": "brandico-tudou"
162 | },
163 | "brandico-tumblr": {
164 | "body": "<${1:i} className=\"icon-tumblr$2\">${1:i}>$0",
165 | "description": "",
166 | "prefix": "brandico-tumblr"
167 | },
168 | "brandico-tumblr-rect": {
169 | "body": "<${1:i} className=\"icon-tumblr-rect$2\">${1:i}>$0",
170 | "description": "",
171 | "prefix": "brandico-tumblr-rect"
172 | },
173 | "brandico-twitter": {
174 | "body": "<${1:i} className=\"icon-twitter$2\">${1:i}>$0",
175 | "description": "",
176 | "prefix": "brandico-twitter"
177 | },
178 | "brandico-twitter-bird": {
179 | "body": "<${1:i} className=\"icon-twitter-bird$2\">${1:i}>$0",
180 | "description": "",
181 | "prefix": "brandico-twitter-bird"
182 | },
183 | "brandico-vimeo": {
184 | "body": "<${1:i} className=\"icon-vimeo$2\">${1:i}>$0",
185 | "description": "",
186 | "prefix": "brandico-vimeo"
187 | },
188 | "brandico-vimeo-rect": {
189 | "body": "<${1:i} className=\"icon-vimeo-rect$2\">${1:i}>$0",
190 | "description": "",
191 | "prefix": "brandico-vimeo-rect"
192 | },
193 | "brandico-visa": {
194 | "body": "<${1:i} className=\"icon-visa$2\">${1:i}>$0",
195 | "description": "",
196 | "prefix": "brandico-visa"
197 | },
198 | "brandico-vkontakte-rect": {
199 | "body": "<${1:i} className=\"icon-vkontakte-rect$2\">${1:i}>$0",
200 | "description": "",
201 | "prefix": "brandico-vkontakte-rect"
202 | },
203 | "brandico-win8": {
204 | "body": "<${1:i} className=\"icon-win8$2\">${1:i}>$0",
205 | "description": "",
206 | "prefix": "brandico-win8"
207 | },
208 | "brandico-wordpress": {
209 | "body": "<${1:i} className=\"icon-wordpress$2\">${1:i}>$0",
210 | "description": "",
211 | "prefix": "brandico-wordpress"
212 | },
213 | "brandico-yandex": {
214 | "body": "<${1:i} className=\"icon-yandex$2\">${1:i}>$0",
215 | "description": "",
216 | "prefix": "brandico-yandex"
217 | },
218 | "brandico-yandex-rect": {
219 | "body": "<${1:i} className=\"icon-yandex-rect$2\">${1:i}>$0",
220 | "description": "",
221 | "prefix": "brandico-yandex-rect"
222 | },
223 | "brandico-youku": {
224 | "body": "<${1:i} className=\"icon-youku$2\">${1:i}>$0",
225 | "description": "",
226 | "prefix": "brandico-youku"
227 | }
228 | }
229 | }
--------------------------------------------------------------------------------
/snippets/geomicon--css.json:
--------------------------------------------------------------------------------
1 | {
2 | ".source.css .meta.property-list.css, .source.css.scss .meta.property-list.scss, .source.less .meta.property-list.less, .source.sass, .source.stylus .meta.property-list.stylus": {
3 | "geomicon-bookmark:": {
4 | "body": "content: '\\\\undefined';$0",
5 | "description": "content",
6 | "prefix": "geomicon-bookmark:"
7 | },
8 | "geomicon-calendar:": {
9 | "body": "content: '\\\\undefined';$0",
10 | "description": "content",
11 | "prefix": "geomicon-calendar:"
12 | },
13 | "geomicon-camera:": {
14 | "body": "content: '\\\\undefined';$0",
15 | "description": "content",
16 | "prefix": "geomicon-camera:"
17 | },
18 | "geomicon-chat:": {
19 | "body": "content: '\\\\undefined';$0",
20 | "description": "content",
21 | "prefix": "geomicon-chat:"
22 | },
23 | "geomicon-check:": {
24 | "body": "content: '\\\\undefined';$0",
25 | "description": "content",
26 | "prefix": "geomicon-check:"
27 | },
28 | "geomicon-chevronDown:": {
29 | "body": "content: '\\\\undefined';$0",
30 | "description": "content",
31 | "prefix": "geomicon-chevronDown:"
32 | },
33 | "geomicon-chevronLeft:": {
34 | "body": "content: '\\\\undefined';$0",
35 | "description": "content",
36 | "prefix": "geomicon-chevronLeft:"
37 | },
38 | "geomicon-chevronRight:": {
39 | "body": "content: '\\\\undefined';$0",
40 | "description": "content",
41 | "prefix": "geomicon-chevronRight:"
42 | },
43 | "geomicon-chevronUp:": {
44 | "body": "content: '\\\\undefined';$0",
45 | "description": "content",
46 | "prefix": "geomicon-chevronUp:"
47 | },
48 | "geomicon-clock:": {
49 | "body": "content: '\\\\undefined';$0",
50 | "description": "content",
51 | "prefix": "geomicon-clock:"
52 | },
53 | "geomicon-close:": {
54 | "body": "content: '\\\\undefined';$0",
55 | "description": "content",
56 | "prefix": "geomicon-close:"
57 | },
58 | "geomicon-cloud:": {
59 | "body": "content: '\\\\undefined';$0",
60 | "description": "content",
61 | "prefix": "geomicon-cloud:"
62 | },
63 | "geomicon-cog:": {
64 | "body": "content: '\\\\undefined';$0",
65 | "description": "content",
66 | "prefix": "geomicon-cog:"
67 | },
68 | "geomicon-compose:": {
69 | "body": "content: '\\\\undefined';$0",
70 | "description": "content",
71 | "prefix": "geomicon-compose:"
72 | },
73 | "geomicon-dribbble:": {
74 | "body": "content: '\\\\undefined';$0",
75 | "description": "content",
76 | "prefix": "geomicon-dribbble:"
77 | },
78 | "geomicon-expand:": {
79 | "body": "content: '\\\\undefined';$0",
80 | "description": "content",
81 | "prefix": "geomicon-expand:"
82 | },
83 | "geomicon-external:": {
84 | "body": "content: '\\\\undefined';$0",
85 | "description": "content",
86 | "prefix": "geomicon-external:"
87 | },
88 | "geomicon-facebook:": {
89 | "body": "content: '\\\\undefined';$0",
90 | "description": "content",
91 | "prefix": "geomicon-facebook:"
92 | },
93 | "geomicon-file:": {
94 | "body": "content: '\\\\undefined';$0",
95 | "description": "content",
96 | "prefix": "geomicon-file:"
97 | },
98 | "geomicon-folder:": {
99 | "body": "content: '\\\\undefined';$0",
100 | "description": "content",
101 | "prefix": "geomicon-folder:"
102 | },
103 | "geomicon-geolocation:": {
104 | "body": "content: '\\\\undefined';$0",
105 | "description": "content",
106 | "prefix": "geomicon-geolocation:"
107 | },
108 | "geomicon-github:": {
109 | "body": "content: '\\\\undefined';$0",
110 | "description": "content",
111 | "prefix": "geomicon-github:"
112 | },
113 | "geomicon-grid:": {
114 | "body": "content: '\\\\undefined';$0",
115 | "description": "content",
116 | "prefix": "geomicon-grid:"
117 | },
118 | "geomicon-heart:": {
119 | "body": "content: '\\\\undefined';$0",
120 | "description": "content",
121 | "prefix": "geomicon-heart:"
122 | },
123 | "geomicon-home:": {
124 | "body": "content: '\\\\undefined';$0",
125 | "description": "content",
126 | "prefix": "geomicon-home:"
127 | },
128 | "geomicon-info:": {
129 | "body": "content: '\\\\undefined';$0",
130 | "description": "content",
131 | "prefix": "geomicon-info:"
132 | },
133 | "geomicon-link:": {
134 | "body": "content: '\\\\undefined';$0",
135 | "description": "content",
136 | "prefix": "geomicon-link:"
137 | },
138 | "geomicon-list:": {
139 | "body": "content: '\\\\undefined';$0",
140 | "description": "content",
141 | "prefix": "geomicon-list:"
142 | },
143 | "geomicon-lock:": {
144 | "body": "content: '\\\\undefined';$0",
145 | "description": "content",
146 | "prefix": "geomicon-lock:"
147 | },
148 | "geomicon-mail:": {
149 | "body": "content: '\\\\undefined';$0",
150 | "description": "content",
151 | "prefix": "geomicon-mail:"
152 | },
153 | "geomicon-musicNote:": {
154 | "body": "content: '\\\\undefined';$0",
155 | "description": "content",
156 | "prefix": "geomicon-musicNote:"
157 | },
158 | "geomicon-next:": {
159 | "body": "content: '\\\\undefined';$0",
160 | "description": "content",
161 | "prefix": "geomicon-next:"
162 | },
163 | "geomicon-no:": {
164 | "body": "content: '\\\\undefined';$0",
165 | "description": "content",
166 | "prefix": "geomicon-no:"
167 | },
168 | "geomicon-pause:": {
169 | "body": "content: '\\\\undefined';$0",
170 | "description": "content",
171 | "prefix": "geomicon-pause:"
172 | },
173 | "geomicon-picture:": {
174 | "body": "content: '\\\\undefined';$0",
175 | "description": "content",
176 | "prefix": "geomicon-picture:"
177 | },
178 | "geomicon-pin:": {
179 | "body": "content: '\\\\undefined';$0",
180 | "description": "content",
181 | "prefix": "geomicon-pin:"
182 | },
183 | "geomicon-play:": {
184 | "body": "content: '\\\\undefined';$0",
185 | "description": "content",
186 | "prefix": "geomicon-play:"
187 | },
188 | "geomicon-previous:": {
189 | "body": "content: '\\\\undefined';$0",
190 | "description": "content",
191 | "prefix": "geomicon-previous:"
192 | },
193 | "geomicon-refresh:": {
194 | "body": "content: '\\\\undefined';$0",
195 | "description": "content",
196 | "prefix": "geomicon-refresh:"
197 | },
198 | "geomicon-repost:": {
199 | "body": "content: '\\\\undefined';$0",
200 | "description": "content",
201 | "prefix": "geomicon-repost:"
202 | },
203 | "geomicon-search:": {
204 | "body": "content: '\\\\undefined';$0",
205 | "description": "content",
206 | "prefix": "geomicon-search:"
207 | },
208 | "geomicon-shoppingCart:": {
209 | "body": "content: '\\\\undefined';$0",
210 | "description": "content",
211 | "prefix": "geomicon-shoppingCart:"
212 | },
213 | "geomicon-skull:": {
214 | "body": "content: '\\\\undefined';$0",
215 | "description": "content",
216 | "prefix": "geomicon-skull:"
217 | },
218 | "geomicon-speaker:": {
219 | "body": "content: '\\\\undefined';$0",
220 | "description": "content",
221 | "prefix": "geomicon-speaker:"
222 | },
223 | "geomicon-speakerVolume:": {
224 | "body": "content: '\\\\undefined';$0",
225 | "description": "content",
226 | "prefix": "geomicon-speakerVolume:"
227 | },
228 | "geomicon-star:": {
229 | "body": "content: '\\\\undefined';$0",
230 | "description": "content",
231 | "prefix": "geomicon-star:"
232 | },
233 | "geomicon-tag:": {
234 | "body": "content: '\\\\undefined';$0",
235 | "description": "content",
236 | "prefix": "geomicon-tag:"
237 | },
238 | "geomicon-trash:": {
239 | "body": "content: '\\\\undefined';$0",
240 | "description": "content",
241 | "prefix": "geomicon-trash:"
242 | },
243 | "geomicon-triangleDown:": {
244 | "body": "content: '\\\\undefined';$0",
245 | "description": "content",
246 | "prefix": "geomicon-triangleDown:"
247 | },
248 | "geomicon-triangleLeft:": {
249 | "body": "content: '\\\\undefined';$0",
250 | "description": "content",
251 | "prefix": "geomicon-triangleLeft:"
252 | },
253 | "geomicon-triangleRight:": {
254 | "body": "content: '\\\\undefined';$0",
255 | "description": "content",
256 | "prefix": "geomicon-triangleRight:"
257 | },
258 | "geomicon-triangleUp:": {
259 | "body": "content: '\\\\undefined';$0",
260 | "description": "content",
261 | "prefix": "geomicon-triangleUp:"
262 | },
263 | "geomicon-twitter:": {
264 | "body": "content: '\\\\undefined';$0",
265 | "description": "content",
266 | "prefix": "geomicon-twitter:"
267 | },
268 | "geomicon-user:": {
269 | "body": "content: '\\\\undefined';$0",
270 | "description": "content",
271 | "prefix": "geomicon-user:"
272 | },
273 | "geomicon-video:": {
274 | "body": "content: '\\\\undefined';$0",
275 | "description": "content",
276 | "prefix": "geomicon-video:"
277 | },
278 | "geomicon-warning:": {
279 | "body": "content: '\\\\undefined';$0",
280 | "description": "content",
281 | "prefix": "geomicon-warning:"
282 | }
283 | }
284 | }
--------------------------------------------------------------------------------
/snippets/social-css.json:
--------------------------------------------------------------------------------
1 | {
2 | ".source.css .meta.property-list.css, .source.less .meta.property-list.less, .source.sass, .source.css.scss .meta.property-list.scss, .source.stylus .meta.property-list.stylus": {
3 | "social-amazon": {
4 | "body": "content: '\\\\E008';",
5 | "description": "content",
6 | "prefix": "social-amazon"
7 | },
8 | "social-android": {
9 | "body": "content: '\\\\E049';",
10 | "description": "content",
11 | "prefix": "social-android"
12 | },
13 | "social-apple": {
14 | "body": "content: '\\\\E044';",
15 | "description": "content",
16 | "prefix": "social-apple"
17 | },
18 | "social-badoo": {
19 | "body": "content: '\\\\E027';",
20 | "description": "content",
21 | "prefix": "social-badoo"
22 | },
23 | "social-behance": {
24 | "body": "content: '\\\\E021';",
25 | "description": "content",
26 | "prefix": "social-behance"
27 | },
28 | "social-bitbucket": {
29 | "body": "content: '\\\\E061';",
30 | "description": "content",
31 | "prefix": "social-bitbucket"
32 | },
33 | "social-blogger": {
34 | "body": "content: '\\\\E006';",
35 | "description": "content",
36 | "prefix": "social-blogger"
37 | },
38 | "social-buffer": {
39 | "body": "content: '\\\\E063';",
40 | "description": "content",
41 | "prefix": "social-buffer"
42 | },
43 | "social-deviantart": {
44 | "body": "content: '\\\\E016';",
45 | "description": "content",
46 | "prefix": "social-deviantart"
47 | },
48 | "social-dribbble": {
49 | "body": "content: '\\\\E015';",
50 | "description": "content",
51 | "prefix": "social-dribbble"
52 | },
53 | "social-dropbox": {
54 | "body": "content: '\\\\E002';",
55 | "description": "content",
56 | "prefix": "social-dropbox"
57 | },
58 | "social-e-mail": {
59 | "body": "content: '\\\\E040';",
60 | "description": "content",
61 | "prefix": "social-e-mail"
62 | },
63 | "social-e-mail-envelope": {
64 | "body": "content: '\\\\E014';",
65 | "description": "content",
66 | "prefix": "social-e-mail-envelope"
67 | },
68 | "social-ebay": {
69 | "body": "content: '\\\\E060';",
70 | "description": "content",
71 | "prefix": "social-ebay"
72 | },
73 | "social-etsy": {
74 | "body": "content: '\\\\E069';",
75 | "description": "content",
76 | "prefix": "social-etsy"
77 | },
78 | "social-evernote": {
79 | "body": "content: '\\\\E012';",
80 | "description": "content",
81 | "prefix": "social-evernote"
82 | },
83 | "social-facebook": {
84 | "body": "content: '\\\\E031';",
85 | "description": "content",
86 | "prefix": "social-facebook"
87 | },
88 | "social-flickr": {
89 | "body": "content: '\\\\E036';",
90 | "description": "content",
91 | "prefix": "social-flickr"
92 | },
93 | "social-foursquare": {
94 | "body": "content: '\\\\E025';",
95 | "description": "content",
96 | "prefix": "social-foursquare"
97 | },
98 | "social-github": {
99 | "body": "content: '\\\\E022';",
100 | "description": "content",
101 | "prefix": "social-github"
102 | },
103 | "social-gmail": {
104 | "body": "content: '\\\\E019';",
105 | "description": "content",
106 | "prefix": "social-gmail"
107 | },
108 | "social-goodreads": {
109 | "body": "content: '\\\\E043';",
110 | "description": "content",
111 | "prefix": "social-goodreads"
112 | },
113 | "social-google-drive": {
114 | "body": "content: '\\\\E058';",
115 | "description": "content",
116 | "prefix": "social-google-drive"
117 | },
118 | "social-google-plus": {
119 | "body": "content: '\\\\E003';",
120 | "description": "content",
121 | "prefix": "social-google-plus"
122 | },
123 | "social-instagram": {
124 | "body": "content: '\\\\E033';",
125 | "description": "content",
126 | "prefix": "social-instagram"
127 | },
128 | "social-instapaper": {
129 | "body": "content: '\\\\E011';",
130 | "description": "content",
131 | "prefix": "social-instapaper"
132 | },
133 | "social-ios": {
134 | "body": "content: '\\\\E050';",
135 | "description": "content",
136 | "prefix": "social-ios"
137 | },
138 | "social-jolicloud": {
139 | "body": "content: '\\\\E004';",
140 | "description": "content",
141 | "prefix": "social-jolicloud"
142 | },
143 | "social-last-fm": {
144 | "body": "content: '\\\\E037';",
145 | "description": "content",
146 | "prefix": "social-last-fm"
147 | },
148 | "social-linked-in": {
149 | "body": "content: '\\\\E018';",
150 | "description": "content",
151 | "prefix": "social-linked-in"
152 | },
153 | "social-linux": {
154 | "body": "content: '\\\\E066';",
155 | "description": "content",
156 | "prefix": "social-linux"
157 | },
158 | "social-linux-foundation": {
159 | "body": "content: '\\\\E059';",
160 | "description": "content",
161 | "prefix": "social-linux-foundation"
162 | },
163 | "social-medium": {
164 | "body": "content: '\\\\E064';",
165 | "description": "content",
166 | "prefix": "social-medium"
167 | },
168 | "social-myspace": {
169 | "body": "content: '\\\\E042';",
170 | "description": "content",
171 | "prefix": "social-myspace"
172 | },
173 | "social-netflix": {
174 | "body": "content: '\\\\E056';",
175 | "description": "content",
176 | "prefix": "social-netflix"
177 | },
178 | "social-open-id": {
179 | "body": "content: '\\\\E024';",
180 | "description": "content",
181 | "prefix": "social-open-id"
182 | },
183 | "social-paypal": {
184 | "body": "content: '\\\\E057';",
185 | "description": "content",
186 | "prefix": "social-paypal"
187 | },
188 | "social-picasa": {
189 | "body": "content: '\\\\E007';",
190 | "description": "content",
191 | "prefix": "social-picasa"
192 | },
193 | "social-pinboard": {
194 | "body": "content: '\\\\E020';",
195 | "description": "content",
196 | "prefix": "social-pinboard"
197 | },
198 | "social-playstation": {
199 | "body": "content: '\\\\E047';",
200 | "description": "content",
201 | "prefix": "social-playstation"
202 | },
203 | "social-pocket": {
204 | "body": "content: '\\\\E052';",
205 | "description": "content",
206 | "prefix": "social-pocket"
207 | },
208 | "social-posterous-spaces": {
209 | "body": "content: '\\\\E034';",
210 | "description": "content",
211 | "prefix": "social-posterous-spaces"
212 | },
213 | "social-quora": {
214 | "body": "content: '\\\\E026';",
215 | "description": "content",
216 | "prefix": "social-quora"
217 | },
218 | "social-read-it-later": {
219 | "body": "content: '\\\\E017';",
220 | "description": "content",
221 | "prefix": "social-read-it-later"
222 | },
223 | "social-readability": {
224 | "body": "content: '\\\\E030';",
225 | "description": "content",
226 | "prefix": "social-readability"
227 | },
228 | "social-rss": {
229 | "body": "content: '\\\\E038';",
230 | "description": "content",
231 | "prefix": "social-rss"
232 | },
233 | "social-skype": {
234 | "body": "content: '\\\\E039';",
235 | "description": "content",
236 | "prefix": "social-skype"
237 | },
238 | "social-slideshare": {
239 | "body": "content: '\\\\E055';",
240 | "description": "content",
241 | "prefix": "social-slideshare"
242 | },
243 | "social-snapchat": {
244 | "body": "content: '\\\\E068';",
245 | "description": "content",
246 | "prefix": "social-snapchat"
247 | },
248 | "social-soundcloud": {
249 | "body": "content: '\\\\E054';",
250 | "description": "content",
251 | "prefix": "social-soundcloud"
252 | },
253 | "social-spotify": {
254 | "body": "content: '\\\\E028';",
255 | "description": "content",
256 | "prefix": "social-spotify"
257 | },
258 | "social-stackexchange": {
259 | "body": "content: '\\\\E070';",
260 | "description": "content",
261 | "prefix": "social-stackexchange"
262 | },
263 | "social-stackoverflow": {
264 | "body": "content: '\\\\E065';",
265 | "description": "content",
266 | "prefix": "social-stackoverflow"
267 | },
268 | "social-steam": {
269 | "body": "content: '\\\\E053';",
270 | "description": "content",
271 | "prefix": "social-steam"
272 | },
273 | "social-stumbleupon": {
274 | "body": "content: '\\\\E029';",
275 | "description": "content",
276 | "prefix": "social-stumbleupon"
277 | },
278 | "social-tumblr": {
279 | "body": "content: '\\\\E009';",
280 | "description": "content",
281 | "prefix": "social-tumblr"
282 | },
283 | "social-twitter": {
284 | "body": "content: '\\\\E032';",
285 | "description": "content",
286 | "prefix": "social-twitter"
287 | },
288 | "social-vimeo": {
289 | "body": "content: '\\\\E035';",
290 | "description": "content",
291 | "prefix": "social-vimeo"
292 | },
293 | "social-vine": {
294 | "body": "content: '\\\\E041';",
295 | "description": "content",
296 | "prefix": "social-vine"
297 | },
298 | "social-vk": {
299 | "body": "content: '\\\\E067';",
300 | "description": "content",
301 | "prefix": "social-vk"
302 | },
303 | "social-whatsapp": {
304 | "body": "content: '\\\\E062';",
305 | "description": "content",
306 | "prefix": "social-whatsapp"
307 | },
308 | "social-wikipedia": {
309 | "body": "content: '\\\\E051';",
310 | "description": "content",
311 | "prefix": "social-wikipedia"
312 | },
313 | "social-windows": {
314 | "body": "content: '\\\\E045';",
315 | "description": "content",
316 | "prefix": "social-windows"
317 | },
318 | "social-wordpress": {
319 | "body": "content: '\\\\E010';",
320 | "description": "content",
321 | "prefix": "social-wordpress"
322 | },
323 | "social-xbox": {
324 | "body": "content: '\\\\E048';",
325 | "description": "content",
326 | "prefix": "social-xbox"
327 | },
328 | "social-xing": {
329 | "body": "content: '\\\\E013';",
330 | "description": "content",
331 | "prefix": "social-xing"
332 | },
333 | "social-yahoo": {
334 | "body": "content: '\\\\E005';",
335 | "description": "content",
336 | "prefix": "social-yahoo"
337 | },
338 | "social-yelp": {
339 | "body": "content: '\\\\E046';",
340 | "description": "content",
341 | "prefix": "social-yelp"
342 | },
343 | "social-youtube": {
344 | "body": "content: '\\\\E023';",
345 | "description": "content",
346 | "prefix": "social-youtube"
347 | }
348 | }
349 | }
--------------------------------------------------------------------------------
/snippets/geomicon--html.json:
--------------------------------------------------------------------------------
1 | {
2 | ".source.svelte, .text.html": {
3 | "geomicon-bookmark:": {
4 | "body": "<${1:span} class=\"geomicon geomicon-bookmark:\">${1:span}>$0",
5 | "description": "",
6 | "prefix": "geomicon-bookmark:"
7 | },
8 | "geomicon-calendar:": {
9 | "body": "<${1:span} class=\"geomicon geomicon-calendar:\">${1:span}>$0",
10 | "description": "",
11 | "prefix": "geomicon-calendar:"
12 | },
13 | "geomicon-camera:": {
14 | "body": "<${1:span} class=\"geomicon geomicon-camera:\">${1:span}>$0",
15 | "description": "",
16 | "prefix": "geomicon-camera:"
17 | },
18 | "geomicon-chat:": {
19 | "body": "<${1:span} class=\"geomicon geomicon-chat:\">${1:span}>$0",
20 | "description": "",
21 | "prefix": "geomicon-chat:"
22 | },
23 | "geomicon-check:": {
24 | "body": "<${1:span} class=\"geomicon geomicon-check:\">${1:span}>$0",
25 | "description": "",
26 | "prefix": "geomicon-check:"
27 | },
28 | "geomicon-chevronDown:": {
29 | "body": "<${1:span} class=\"geomicon geomicon-chevronDown:\">${1:span}>$0",
30 | "description": "",
31 | "prefix": "geomicon-chevronDown:"
32 | },
33 | "geomicon-chevronLeft:": {
34 | "body": "<${1:span} class=\"geomicon geomicon-chevronLeft:\">${1:span}>$0",
35 | "description": "",
36 | "prefix": "geomicon-chevronLeft:"
37 | },
38 | "geomicon-chevronRight:": {
39 | "body": "<${1:span} class=\"geomicon geomicon-chevronRight:\">${1:span}>$0",
40 | "description": "",
41 | "prefix": "geomicon-chevronRight:"
42 | },
43 | "geomicon-chevronUp:": {
44 | "body": "<${1:span} class=\"geomicon geomicon-chevronUp:\">${1:span}>$0",
45 | "description": "",
46 | "prefix": "geomicon-chevronUp:"
47 | },
48 | "geomicon-clock:": {
49 | "body": "<${1:span} class=\"geomicon geomicon-clock:\">${1:span}>$0",
50 | "description": "",
51 | "prefix": "geomicon-clock:"
52 | },
53 | "geomicon-close:": {
54 | "body": "<${1:span} class=\"geomicon geomicon-close:\">${1:span}>$0",
55 | "description": "",
56 | "prefix": "geomicon-close:"
57 | },
58 | "geomicon-cloud:": {
59 | "body": "<${1:span} class=\"geomicon geomicon-cloud:\">${1:span}>$0",
60 | "description": "",
61 | "prefix": "geomicon-cloud:"
62 | },
63 | "geomicon-cog:": {
64 | "body": "<${1:span} class=\"geomicon geomicon-cog:\">${1:span}>$0",
65 | "description": "",
66 | "prefix": "geomicon-cog:"
67 | },
68 | "geomicon-compose:": {
69 | "body": "<${1:span} class=\"geomicon geomicon-compose:\">${1:span}>$0",
70 | "description": "",
71 | "prefix": "geomicon-compose:"
72 | },
73 | "geomicon-dribbble:": {
74 | "body": "<${1:span} class=\"geomicon geomicon-dribbble:\">${1:span}>$0",
75 | "description": "",
76 | "prefix": "geomicon-dribbble:"
77 | },
78 | "geomicon-expand:": {
79 | "body": "<${1:span} class=\"geomicon geomicon-expand:\">${1:span}>$0",
80 | "description": "",
81 | "prefix": "geomicon-expand:"
82 | },
83 | "geomicon-external:": {
84 | "body": "<${1:span} class=\"geomicon geomicon-external:\">${1:span}>$0",
85 | "description": "",
86 | "prefix": "geomicon-external:"
87 | },
88 | "geomicon-facebook:": {
89 | "body": "<${1:span} class=\"geomicon geomicon-facebook:\">${1:span}>$0",
90 | "description": "",
91 | "prefix": "geomicon-facebook:"
92 | },
93 | "geomicon-file:": {
94 | "body": "<${1:span} class=\"geomicon geomicon-file:\">${1:span}>$0",
95 | "description": "",
96 | "prefix": "geomicon-file:"
97 | },
98 | "geomicon-folder:": {
99 | "body": "<${1:span} class=\"geomicon geomicon-folder:\">${1:span}>$0",
100 | "description": "",
101 | "prefix": "geomicon-folder:"
102 | },
103 | "geomicon-geolocation:": {
104 | "body": "<${1:span} class=\"geomicon geomicon-geolocation:\">${1:span}>$0",
105 | "description": "",
106 | "prefix": "geomicon-geolocation:"
107 | },
108 | "geomicon-github:": {
109 | "body": "<${1:span} class=\"geomicon geomicon-github:\">${1:span}>$0",
110 | "description": "",
111 | "prefix": "geomicon-github:"
112 | },
113 | "geomicon-grid:": {
114 | "body": "<${1:span} class=\"geomicon geomicon-grid:\">${1:span}>$0",
115 | "description": "",
116 | "prefix": "geomicon-grid:"
117 | },
118 | "geomicon-heart:": {
119 | "body": "<${1:span} class=\"geomicon geomicon-heart:\">${1:span}>$0",
120 | "description": "",
121 | "prefix": "geomicon-heart:"
122 | },
123 | "geomicon-home:": {
124 | "body": "<${1:span} class=\"geomicon geomicon-home:\">${1:span}>$0",
125 | "description": "",
126 | "prefix": "geomicon-home:"
127 | },
128 | "geomicon-info:": {
129 | "body": "<${1:span} class=\"geomicon geomicon-info:\">${1:span}>$0",
130 | "description": "",
131 | "prefix": "geomicon-info:"
132 | },
133 | "geomicon-link:": {
134 | "body": "<${1:span} class=\"geomicon geomicon-link:\">${1:span}>$0",
135 | "description": "",
136 | "prefix": "geomicon-link:"
137 | },
138 | "geomicon-list:": {
139 | "body": "<${1:span} class=\"geomicon geomicon-list:\">${1:span}>$0",
140 | "description": "",
141 | "prefix": "geomicon-list:"
142 | },
143 | "geomicon-lock:": {
144 | "body": "<${1:span} class=\"geomicon geomicon-lock:\">${1:span}>$0",
145 | "description": "",
146 | "prefix": "geomicon-lock:"
147 | },
148 | "geomicon-mail:": {
149 | "body": "<${1:span} class=\"geomicon geomicon-mail:\">${1:span}>$0",
150 | "description": "",
151 | "prefix": "geomicon-mail:"
152 | },
153 | "geomicon-musicNote:": {
154 | "body": "<${1:span} class=\"geomicon geomicon-musicNote:\">${1:span}>$0",
155 | "description": "",
156 | "prefix": "geomicon-musicNote:"
157 | },
158 | "geomicon-next:": {
159 | "body": "<${1:span} class=\"geomicon geomicon-next:\">${1:span}>$0",
160 | "description": "",
161 | "prefix": "geomicon-next:"
162 | },
163 | "geomicon-no:": {
164 | "body": "<${1:span} class=\"geomicon geomicon-no:\">${1:span}>$0",
165 | "description": "",
166 | "prefix": "geomicon-no:"
167 | },
168 | "geomicon-pause:": {
169 | "body": "<${1:span} class=\"geomicon geomicon-pause:\">${1:span}>$0",
170 | "description": "",
171 | "prefix": "geomicon-pause:"
172 | },
173 | "geomicon-picture:": {
174 | "body": "<${1:span} class=\"geomicon geomicon-picture:\">${1:span}>$0",
175 | "description": "",
176 | "prefix": "geomicon-picture:"
177 | },
178 | "geomicon-pin:": {
179 | "body": "<${1:span} class=\"geomicon geomicon-pin:\">${1:span}>$0",
180 | "description": "",
181 | "prefix": "geomicon-pin:"
182 | },
183 | "geomicon-play:": {
184 | "body": "<${1:span} class=\"geomicon geomicon-play:\">${1:span}>$0",
185 | "description": "",
186 | "prefix": "geomicon-play:"
187 | },
188 | "geomicon-previous:": {
189 | "body": "<${1:span} class=\"geomicon geomicon-previous:\">${1:span}>$0",
190 | "description": "",
191 | "prefix": "geomicon-previous:"
192 | },
193 | "geomicon-refresh:": {
194 | "body": "<${1:span} class=\"geomicon geomicon-refresh:\">${1:span}>$0",
195 | "description": "",
196 | "prefix": "geomicon-refresh:"
197 | },
198 | "geomicon-repost:": {
199 | "body": "<${1:span} class=\"geomicon geomicon-repost:\">${1:span}>$0",
200 | "description": "",
201 | "prefix": "geomicon-repost:"
202 | },
203 | "geomicon-search:": {
204 | "body": "<${1:span} class=\"geomicon geomicon-search:\">${1:span}>$0",
205 | "description": "",
206 | "prefix": "geomicon-search:"
207 | },
208 | "geomicon-shoppingCart:": {
209 | "body": "<${1:span} class=\"geomicon geomicon-shoppingCart:\">${1:span}>$0",
210 | "description": "",
211 | "prefix": "geomicon-shoppingCart:"
212 | },
213 | "geomicon-skull:": {
214 | "body": "<${1:span} class=\"geomicon geomicon-skull:\">${1:span}>$0",
215 | "description": "",
216 | "prefix": "geomicon-skull:"
217 | },
218 | "geomicon-speaker:": {
219 | "body": "<${1:span} class=\"geomicon geomicon-speaker:\">${1:span}>$0",
220 | "description": "",
221 | "prefix": "geomicon-speaker:"
222 | },
223 | "geomicon-speakerVolume:": {
224 | "body": "<${1:span} class=\"geomicon geomicon-speakerVolume:\">${1:span}>$0",
225 | "description": "",
226 | "prefix": "geomicon-speakerVolume:"
227 | },
228 | "geomicon-star:": {
229 | "body": "<${1:span} class=\"geomicon geomicon-star:\">${1:span}>$0",
230 | "description": "",
231 | "prefix": "geomicon-star:"
232 | },
233 | "geomicon-tag:": {
234 | "body": "<${1:span} class=\"geomicon geomicon-tag:\">${1:span}>$0",
235 | "description": "",
236 | "prefix": "geomicon-tag:"
237 | },
238 | "geomicon-trash:": {
239 | "body": "<${1:span} class=\"geomicon geomicon-trash:\">${1:span}>$0",
240 | "description": "",
241 | "prefix": "geomicon-trash:"
242 | },
243 | "geomicon-triangleDown:": {
244 | "body": "<${1:span} class=\"geomicon geomicon-triangleDown:\">${1:span}>$0",
245 | "description": "",
246 | "prefix": "geomicon-triangleDown:"
247 | },
248 | "geomicon-triangleLeft:": {
249 | "body": "<${1:span} class=\"geomicon geomicon-triangleLeft:\">${1:span}>$0",
250 | "description": "",
251 | "prefix": "geomicon-triangleLeft:"
252 | },
253 | "geomicon-triangleRight:": {
254 | "body": "<${1:span} class=\"geomicon geomicon-triangleRight:\">${1:span}>$0",
255 | "description": "",
256 | "prefix": "geomicon-triangleRight:"
257 | },
258 | "geomicon-triangleUp:": {
259 | "body": "<${1:span} class=\"geomicon geomicon-triangleUp:\">${1:span}>$0",
260 | "description": "",
261 | "prefix": "geomicon-triangleUp:"
262 | },
263 | "geomicon-twitter:": {
264 | "body": "<${1:span} class=\"geomicon geomicon-twitter:\">${1:span}>$0",
265 | "description": "",
266 | "prefix": "geomicon-twitter:"
267 | },
268 | "geomicon-user:": {
269 | "body": "<${1:span} class=\"geomicon geomicon-user:\">${1:span}>$0",
270 | "description": "",
271 | "prefix": "geomicon-user:"
272 | },
273 | "geomicon-video:": {
274 | "body": "<${1:span} class=\"geomicon geomicon-video:\">${1:span}>$0",
275 | "description": "",
276 | "prefix": "geomicon-video:"
277 | },
278 | "geomicon-warning:": {
279 | "body": "<${1:span} class=\"geomicon geomicon-warning:\">${1:span}>$0",
280 | "description": "",
281 | "prefix": "geomicon-warning:"
282 | }
283 | }
284 | }
--------------------------------------------------------------------------------
/snippets/geomicon--jsx.json:
--------------------------------------------------------------------------------
1 | {
2 | ".source.js.jsx": {
3 | "geomicon-bookmark:": {
4 | "body": "<${1:span} className=\"geomicon geomicon-bookmark:\">${1:span}>$0",
5 | "description": "",
6 | "prefix": "geomicon-bookmark:"
7 | },
8 | "geomicon-calendar:": {
9 | "body": "<${1:span} className=\"geomicon geomicon-calendar:\">${1:span}>$0",
10 | "description": "",
11 | "prefix": "geomicon-calendar:"
12 | },
13 | "geomicon-camera:": {
14 | "body": "<${1:span} className=\"geomicon geomicon-camera:\">${1:span}>$0",
15 | "description": "",
16 | "prefix": "geomicon-camera:"
17 | },
18 | "geomicon-chat:": {
19 | "body": "<${1:span} className=\"geomicon geomicon-chat:\">${1:span}>$0",
20 | "description": "",
21 | "prefix": "geomicon-chat:"
22 | },
23 | "geomicon-check:": {
24 | "body": "<${1:span} className=\"geomicon geomicon-check:\">${1:span}>$0",
25 | "description": "",
26 | "prefix": "geomicon-check:"
27 | },
28 | "geomicon-chevronDown:": {
29 | "body": "<${1:span} className=\"geomicon geomicon-chevronDown:\">${1:span}>$0",
30 | "description": "",
31 | "prefix": "geomicon-chevronDown:"
32 | },
33 | "geomicon-chevronLeft:": {
34 | "body": "<${1:span} className=\"geomicon geomicon-chevronLeft:\">${1:span}>$0",
35 | "description": "",
36 | "prefix": "geomicon-chevronLeft:"
37 | },
38 | "geomicon-chevronRight:": {
39 | "body": "<${1:span} className=\"geomicon geomicon-chevronRight:\">${1:span}>$0",
40 | "description": "",
41 | "prefix": "geomicon-chevronRight:"
42 | },
43 | "geomicon-chevronUp:": {
44 | "body": "<${1:span} className=\"geomicon geomicon-chevronUp:\">${1:span}>$0",
45 | "description": "",
46 | "prefix": "geomicon-chevronUp:"
47 | },
48 | "geomicon-clock:": {
49 | "body": "<${1:span} className=\"geomicon geomicon-clock:\">${1:span}>$0",
50 | "description": "",
51 | "prefix": "geomicon-clock:"
52 | },
53 | "geomicon-close:": {
54 | "body": "<${1:span} className=\"geomicon geomicon-close:\">${1:span}>$0",
55 | "description": "",
56 | "prefix": "geomicon-close:"
57 | },
58 | "geomicon-cloud:": {
59 | "body": "<${1:span} className=\"geomicon geomicon-cloud:\">${1:span}>$0",
60 | "description": "",
61 | "prefix": "geomicon-cloud:"
62 | },
63 | "geomicon-cog:": {
64 | "body": "<${1:span} className=\"geomicon geomicon-cog:\">${1:span}>$0",
65 | "description": "",
66 | "prefix": "geomicon-cog:"
67 | },
68 | "geomicon-compose:": {
69 | "body": "<${1:span} className=\"geomicon geomicon-compose:\">${1:span}>$0",
70 | "description": "",
71 | "prefix": "geomicon-compose:"
72 | },
73 | "geomicon-dribbble:": {
74 | "body": "<${1:span} className=\"geomicon geomicon-dribbble:\">${1:span}>$0",
75 | "description": "",
76 | "prefix": "geomicon-dribbble:"
77 | },
78 | "geomicon-expand:": {
79 | "body": "<${1:span} className=\"geomicon geomicon-expand:\">${1:span}>$0",
80 | "description": "",
81 | "prefix": "geomicon-expand:"
82 | },
83 | "geomicon-external:": {
84 | "body": "<${1:span} className=\"geomicon geomicon-external:\">${1:span}>$0",
85 | "description": "",
86 | "prefix": "geomicon-external:"
87 | },
88 | "geomicon-facebook:": {
89 | "body": "<${1:span} className=\"geomicon geomicon-facebook:\">${1:span}>$0",
90 | "description": "",
91 | "prefix": "geomicon-facebook:"
92 | },
93 | "geomicon-file:": {
94 | "body": "<${1:span} className=\"geomicon geomicon-file:\">${1:span}>$0",
95 | "description": "",
96 | "prefix": "geomicon-file:"
97 | },
98 | "geomicon-folder:": {
99 | "body": "<${1:span} className=\"geomicon geomicon-folder:\">${1:span}>$0",
100 | "description": "",
101 | "prefix": "geomicon-folder:"
102 | },
103 | "geomicon-geolocation:": {
104 | "body": "<${1:span} className=\"geomicon geomicon-geolocation:\">${1:span}>$0",
105 | "description": "",
106 | "prefix": "geomicon-geolocation:"
107 | },
108 | "geomicon-github:": {
109 | "body": "<${1:span} className=\"geomicon geomicon-github:\">${1:span}>$0",
110 | "description": "