├── .editorconfig ├── .eslintrc.cjs ├── .github └── workflows │ ├── default.yml │ └── stale.yml ├── .gitignore ├── .husky └── pre-commit ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── gulpfile.mjs ├── package.json ├── pnpm-lock.yaml ├── resources ├── logo.png └── screenshot.gif ├── snippets ├── css │ ├── ai.json │ ├── bx.json │ ├── cc.json │ ├── dashicons.json │ ├── devicons.json │ ├── el.json │ ├── fab.json │ ├── far.json │ ├── fas.json │ ├── fl.json │ ├── glyphicon.json │ ├── icono.json │ ├── ion.json │ ├── mdi.json │ ├── mfg.json │ ├── mfizz.json │ ├── octicon.json │ ├── oi.json │ ├── openwebicons.json │ ├── pf.json │ ├── ri.json │ ├── st.json │ ├── typcn.json │ ├── wi.json │ └── zmdi.json ├── html │ ├── ai.json │ ├── bx.json │ ├── cc.json │ ├── dashicons.json │ ├── devicons.json │ ├── el.json │ ├── fa-helpers.json │ ├── fab.json │ ├── far.json │ ├── fas.json │ ├── fl.json │ ├── glyphicon.json │ ├── icono.json │ ├── ion.json │ ├── mdi.json │ ├── mfg.json │ ├── mfizz.json │ ├── mio.json │ ├── octicon.json │ ├── oi.json │ ├── openwebicons.json │ ├── pf.json │ ├── ri.json │ ├── st.json │ ├── typcn.json │ ├── wi.json │ └── zmdi.json └── jsx │ ├── ai.json │ ├── bx.json │ ├── cc.json │ ├── dashicons.json │ ├── devicons.json │ ├── el.json │ ├── fa-helpers.json │ ├── fab.json │ ├── far.json │ ├── fas.json │ ├── fl.json │ ├── glyphicon.json │ ├── icono.json │ ├── ion.json │ ├── mdi.json │ ├── mfg.json │ ├── mfizz.json │ ├── mio.json │ ├── octicon.json │ ├── oi.json │ ├── openwebicons.json │ ├── pf.json │ ├── ri.json │ ├── st.json │ ├── typcn.json │ ├── wi.json │ └── zmdi.json ├── src └── logo.svg └── tools ├── build.js ├── db.yml ├── package.json └── pnpm-lock.yaml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/workflows/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/.github/workflows/default.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/gulpfile.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/resources/logo.png -------------------------------------------------------------------------------- /resources/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/resources/screenshot.gif -------------------------------------------------------------------------------- /snippets/css/ai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/css/ai.json -------------------------------------------------------------------------------- /snippets/css/bx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/css/bx.json -------------------------------------------------------------------------------- /snippets/css/cc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/css/cc.json -------------------------------------------------------------------------------- /snippets/css/dashicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/css/dashicons.json -------------------------------------------------------------------------------- /snippets/css/devicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/css/devicons.json -------------------------------------------------------------------------------- /snippets/css/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/css/el.json -------------------------------------------------------------------------------- /snippets/css/fab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/css/fab.json -------------------------------------------------------------------------------- /snippets/css/far.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/css/far.json -------------------------------------------------------------------------------- /snippets/css/fas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/css/fas.json -------------------------------------------------------------------------------- /snippets/css/fl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/css/fl.json -------------------------------------------------------------------------------- /snippets/css/glyphicon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/css/glyphicon.json -------------------------------------------------------------------------------- /snippets/css/icono.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /snippets/css/ion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/css/ion.json -------------------------------------------------------------------------------- /snippets/css/mdi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/css/mdi.json -------------------------------------------------------------------------------- /snippets/css/mfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/css/mfg.json -------------------------------------------------------------------------------- /snippets/css/mfizz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/css/mfizz.json -------------------------------------------------------------------------------- /snippets/css/octicon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/css/octicon.json -------------------------------------------------------------------------------- /snippets/css/oi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/css/oi.json -------------------------------------------------------------------------------- /snippets/css/openwebicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/css/openwebicons.json -------------------------------------------------------------------------------- /snippets/css/pf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/css/pf.json -------------------------------------------------------------------------------- /snippets/css/ri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/css/ri.json -------------------------------------------------------------------------------- /snippets/css/st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/css/st.json -------------------------------------------------------------------------------- /snippets/css/typcn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/css/typcn.json -------------------------------------------------------------------------------- /snippets/css/wi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/css/wi.json -------------------------------------------------------------------------------- /snippets/css/zmdi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/css/zmdi.json -------------------------------------------------------------------------------- /snippets/html/ai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/ai.json -------------------------------------------------------------------------------- /snippets/html/bx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/bx.json -------------------------------------------------------------------------------- /snippets/html/cc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/cc.json -------------------------------------------------------------------------------- /snippets/html/dashicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/dashicons.json -------------------------------------------------------------------------------- /snippets/html/devicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/devicons.json -------------------------------------------------------------------------------- /snippets/html/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/el.json -------------------------------------------------------------------------------- /snippets/html/fa-helpers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/fa-helpers.json -------------------------------------------------------------------------------- /snippets/html/fab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/fab.json -------------------------------------------------------------------------------- /snippets/html/far.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/far.json -------------------------------------------------------------------------------- /snippets/html/fas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/fas.json -------------------------------------------------------------------------------- /snippets/html/fl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/fl.json -------------------------------------------------------------------------------- /snippets/html/glyphicon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/glyphicon.json -------------------------------------------------------------------------------- /snippets/html/icono.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /snippets/html/ion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/ion.json -------------------------------------------------------------------------------- /snippets/html/mdi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/mdi.json -------------------------------------------------------------------------------- /snippets/html/mfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/mfg.json -------------------------------------------------------------------------------- /snippets/html/mfizz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/mfizz.json -------------------------------------------------------------------------------- /snippets/html/mio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/mio.json -------------------------------------------------------------------------------- /snippets/html/octicon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/octicon.json -------------------------------------------------------------------------------- /snippets/html/oi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/oi.json -------------------------------------------------------------------------------- /snippets/html/openwebicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/openwebicons.json -------------------------------------------------------------------------------- /snippets/html/pf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/pf.json -------------------------------------------------------------------------------- /snippets/html/ri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/ri.json -------------------------------------------------------------------------------- /snippets/html/st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/st.json -------------------------------------------------------------------------------- /snippets/html/typcn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/typcn.json -------------------------------------------------------------------------------- /snippets/html/wi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/wi.json -------------------------------------------------------------------------------- /snippets/html/zmdi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/html/zmdi.json -------------------------------------------------------------------------------- /snippets/jsx/ai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/ai.json -------------------------------------------------------------------------------- /snippets/jsx/bx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/bx.json -------------------------------------------------------------------------------- /snippets/jsx/cc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/cc.json -------------------------------------------------------------------------------- /snippets/jsx/dashicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/dashicons.json -------------------------------------------------------------------------------- /snippets/jsx/devicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/devicons.json -------------------------------------------------------------------------------- /snippets/jsx/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/el.json -------------------------------------------------------------------------------- /snippets/jsx/fa-helpers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/fa-helpers.json -------------------------------------------------------------------------------- /snippets/jsx/fab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/fab.json -------------------------------------------------------------------------------- /snippets/jsx/far.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/far.json -------------------------------------------------------------------------------- /snippets/jsx/fas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/fas.json -------------------------------------------------------------------------------- /snippets/jsx/fl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/fl.json -------------------------------------------------------------------------------- /snippets/jsx/glyphicon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/glyphicon.json -------------------------------------------------------------------------------- /snippets/jsx/icono.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /snippets/jsx/ion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/ion.json -------------------------------------------------------------------------------- /snippets/jsx/mdi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/mdi.json -------------------------------------------------------------------------------- /snippets/jsx/mfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/mfg.json -------------------------------------------------------------------------------- /snippets/jsx/mfizz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/mfizz.json -------------------------------------------------------------------------------- /snippets/jsx/mio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/mio.json -------------------------------------------------------------------------------- /snippets/jsx/octicon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/octicon.json -------------------------------------------------------------------------------- /snippets/jsx/oi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/oi.json -------------------------------------------------------------------------------- /snippets/jsx/openwebicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/openwebicons.json -------------------------------------------------------------------------------- /snippets/jsx/pf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/pf.json -------------------------------------------------------------------------------- /snippets/jsx/ri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/ri.json -------------------------------------------------------------------------------- /snippets/jsx/st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/st.json -------------------------------------------------------------------------------- /snippets/jsx/typcn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/typcn.json -------------------------------------------------------------------------------- /snippets/jsx/wi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/wi.json -------------------------------------------------------------------------------- /snippets/jsx/zmdi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/snippets/jsx/zmdi.json -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/src/logo.svg -------------------------------------------------------------------------------- /tools/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/tools/build.js -------------------------------------------------------------------------------- /tools/db.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/tools/db.yml -------------------------------------------------------------------------------- /tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/tools/package.json -------------------------------------------------------------------------------- /tools/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idleberg/vscode-icon-fonts/HEAD/tools/pnpm-lock.yaml --------------------------------------------------------------------------------