fork from a ecmel/vscode-html-css | HTML CSS Support
HTML id and class attribute "completion" for coc.nvim.
:CocInstall coc-html-css-support
- HTML id and class attribute completion.
- Supports linked and embedded style sheets.
- Supports template inheritance.
- Supports additional style sheets.
- Supports other HTML like languages.
-
html-css-support.enable
: Enable coc-html-css-support extension, default:true
-
html-css-support.enabledLanguages
: List of languages which suggestions are desired, default:["html"]
-
html-css-support.styleSheets
: List of local or remote style sheets for suggestions, default:[]
-
html-css-support.dispose
: Clear cache and reload the stylesheet
coc-settings.json:
{
"html-css-support.styleSheets": [
"https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css",
"/style.css",
"style.css"
]
}
coc-settings.json:
{
"html-css-support.enabledLanguages": [
"html",
"vue",
"blade",
"htmldjango",
"typescriptreact",
"javascriptreact"
]
}
- ecmel/vscode-html-css : The origin of this repository.
MIT
This extension is built with create-coc-extension