CSSFontFamily
CSSFontFamily is a Sublime Text plugin with a collection of font stacks autocomplete.
Details
Installs
- Total 26K
- Win 20K
- Mac 4K
- Linux 3K
Apr 3 | Apr 2 | Apr 1 | Mar 31 | Mar 30 | Mar 29 | Mar 28 | Mar 27 | Mar 26 | Mar 25 | Mar 24 | Mar 23 | Mar 22 | Mar 21 | Mar 20 | Mar 19 | Mar 18 | Mar 17 | Mar 16 | Mar 15 | Mar 14 | Mar 13 | Mar 12 | Mar 11 | Mar 10 | Mar 9 | Mar 8 | Mar 7 | Mar 6 | Mar 5 | Mar 4 | Mar 3 | Mar 2 | Mar 1 | Feb 28 | Feb 27 | Feb 26 | Feb 25 | Feb 24 | Feb 23 | Feb 22 | Feb 21 | Feb 20 | Feb 19 | Feb 18 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 2 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Mac | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
CSSFontFamily
CSSFontFamily is a Sublime Text 2/3 plugin with a collection of font stacks autocomplete.
Also, autocomplete @font-faces
declared in your current CSS.
Installation
CSSFontFamily is designed to work with Sublime Text.
Using Sublime Package Control
If you are using Sublime Package Control, you can easily install CSSFontFamily via the Package Control: Install Package
menu item. The CSSFontFamily package is listed as CSSFontFamily
in the packages list.
Using Git
Clone this repo directly to your Packages
directory in the Sublime Text folder.
You can locate your Sublime Text Packages
directory by using the menu item Preferences > Browse Packages...
.
While inside the Packages
directory, clone the plugin repository using the command below:
git clone https://github.com/lcdsantos/CSSFontFamily/ "CSSFontFamily"
Download Manually
- Download the files using the GitHub .zip download option
- Unzip the files and rename the folder to
CSSFontFamily
- Copy the folder to your Sublime Text
Packages
directory
Usage
The plugin is triggered inside your font
and font-family
declarations.
Customization
The built-in font stacks aren't enough for you? No problem! Go to Preferences > Package Settings > CSSFontFamily > Settings - User
and add how many you want:
{
"fonts_stacks": [
"\"Comic Sans MS\", cursive",
"\"Your font stack\", sans-serif"
]
}
It's recommended that you escape your font names with quotes if contains spaces or any punctuations other than hyphens.
By default, commented @font-face
declarations in your CSS are ignored, you can change this by adding this to your User Settings file:
{
"ignore_font_faces_in_comments": false
}