BootstrapAutocomplete
Sublime Text 4 plugin for Bootstrap class name autocompletion.
Details
Installs
- Total 25K
- Win 21K
- Mac 2K
- Linux 3K
Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 3 | 8 | 3 | 4 | 1 | 2 | 9 | 5 | 8 | 3 | 6 | 2 | 5 | 4 | 5 | 4 | 6 | 4 | 5 | 3 | 5 | 8 | 3 | 7 | 6 | 0 | 2 | 4 | 2 | 0 | 0 | 0 | 1 | 4 | 3 | 6 | 3 | 2 | 4 | 3 | 0 | 2 | 0 | 0 | 10 | 6 |
Mac | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 3 | 0 | 0 | 0 | 1 | 0 | 4 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 3 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 3 | 0 | 0 | 1 | 0 | 0 | 3 | 1 | 0 | 2 | 0 | 1 | 3 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | 2 | 1 | 3 | 1 | 0 | 0 | 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.3
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