ctrl+shift+p filters: :st2 :st3 :win :osx :linux
浏览

BootstrapAutocomplete

jfcherng ST4

Sublime Text 4 插件,用于 Bootstrap 类名自动补全。

标签 自动完成

详细信息

  • 2.0.3
  • github.com
  • github.com
  • 3个月前
  • 2小时前
  • 3年前

安装

  • 总数 25K
  • Win 20K
  • Mac 2K
  • Linux 2K
8月6日 8月5日 8月4日 8月3日 8月2日 8月1日 7月31日 7月30日 7月29日 7月28日 7月27日 7月26日 7月25日 7月24日 7月23日 7月22日 7月21日 7月20日 7月19日 7月18日 7月17日 7月16日 7月15日 7月14日 7月13日 7月12日 7月11日 7月10日 7月9日 7月8日 7月7日 7月6日 7月5日 7月4日 7月3日 7月2日 7月1日 6月30日 6月29日 6月28日 6月27日 6月26日 6月25日 6月24日 6月23日 6月22日
Windows 5 3 4 6 5 6 5 2 2 9 6 4 5 10 6 9 4 2 4 4 8 6 6 3 4 2 3 5 11 12 3 6 1 7 9 8 9 1 5 4 3 5 12 24 4 2
Mac 4 1 0 0 1 0 0 1 1 0 0 0 1 1 1 0 0 0 0 0 0 0 1 0 0 0 2 0 0 2 0 0 0 1 2 1 1 0 0 0 0 0 0 1 0 1
Linux 1 1 0 1 2 1 0 0 0 1 2 2 1 2 0 1 2 1 0 1 2 0 0 2 1 0 1 1 1 2 4 1 1 1 1 2 1 3 1 0 1 2 1 3 1 0

说明文件

源代码
raw.githubusercontent.com

ST-BootstrapAutocomplete

Required ST Build GitHub Actions Package Control GitHub tag (latest SemVer) Project license GitHub stars Donate to this project using Paypal

这个 Sublime Text 4 插件旨在统一其他 Bootstrap 自动补全插件。

这个插件旨在轻松支持各种版本的 Bootstrap 自动补全。目前,它支持 Bootstrap 2、3、4 和 5(默认)。如果您发现缺少类名或问题,欢迎提出问题或拉取请求。

screenshot-st4

安装

此软件包可在软件包控制中通过名称 BootstrapAutocomplete 获取。

全局设置

从主菜单:首选项BootstrapAutocomplete设置

{
    // 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"],
}

项目设置

您可能在项目中仅想使用特定的 Bootstrap 版本。在这种情况下,您可以在项目设置中指定您想使用的版本。

从主菜单:项目编辑项目

{
    "folders":
    [
        // ...
    ],
    "settings": {
        // settings here will override global settings
        "BootstrapAutocomplete": {
            // use Bootstrap 4 for this project.
            "versions": ["4"],
        },
    },
}

对于插件开发者

此插件的自动完成列表是从以下内容提取的

  • 官方 Bootstrap v2.3.2
  • 官方 Bootstrap v3.4.1
  • 官方 Bootstrap v4.6.2
  • 官方 Bootstrap v5.3.3

通过 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