BootstrapAutocomplete
Sublime Text 4 plugin for Bootstrap class name autocompletion.
Details
Installs
- Total 27K
 - Win 22K
 - Mac 2K
 - Linux 3K
 
| Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | Oct 5 | Oct 4 | Oct 3 | Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 0 | 4 | 2 | 1 | 5 | 0 | 4 | 1 | 2 | 1 | 2 | 0 | 1 | 5 | 3 | 1 | 1 | 4 | 0 | 4 | 0 | 3 | 0 | 3 | 2 | 2 | 4 | 5 | 7 | 3 | 1 | 4 | 3 | 7 | 6 | 5 | 1 | 2 | 1 | 2 | 1 | 1 | 0 | 3 | 1 | 5 | 
| Mac | 0 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 2 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 2 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 
| Linux | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 2 | 1 | 2 | 0 | 1 | 0 | 1 | 2 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 2 | 0 | 0 | 
Readme
- Source
 - raw.githubusercontent.com
 
ST-BootstrapAutocomplete
This Sublime Text 4 plugin means to unify other Bootstrap autocompletion plugins.
- Bootstrap 3 Autocomplete
 - Bootstrap 4 Autocomplete
 - Bootstrap 4x Autocomplete
 - Maybe more implicit ones…
 
This plugin is designed to support various versions of Bootstrap's autocompletion with ease. At this moment, it supports Bootstrap 2, 3, 4 and 5 (default). If you find a missing class name, an issue or pull request is always welcome.

Installation
This package is available on Package Control by the name of BootstrapAutocomplete.
Global Settings
From the main menu: Preferences » BootstrapAutocomplete » Settings
{
    // scopes that this plugin should activated
    "selectors": [
        "text.html string.quoted - meta.path - meta.item-access",
        "text.html meta.attribute-with-value.class",
    ],
    // targeted Bootstrap versions (available versions are: "2", "3", "4", "5")
    "versions": ["5"],
}
Project Settings
You most likely want to use only a specific version of Bootstrap in a project. In that case, you can specify the version(s) you want to use in your project settings.
From the main menu: Project » Edit Project
{
    "folders":
    [
        // ...
    ],
    "settings": {
        // settings here will override global settings
        "BootstrapAutocomplete": {
            // use Bootstrap 4 for this project.
            "versions": ["4"],
        },
    },
}
For Plugin Developers
This plugin's autocompletion lists are extracted from
- Official Bootstrap 
v2.3.2 - Official Bootstrap 
v3.4.1 - Official Bootstrap 
v4.6.2 - Official Bootstrap 
v5.3.4 
with scripts/extract_class_names_auto.sh.
# setup environment
python -m venv .venv
. .venv/Scripts/activate # if on Windows
. .venv/bin/activate # if not on Windows
python -m pip install -U -r requirements.txt
# extract class names
./scripts/extract_class_names_auto.sh