Css language server extension for coc.nvim.
Uses vscode-css-languageservice inside.
In your vim/neovim, run the command:
:CocInstall coc-css
Coc has support for all features that vscode-css-languageservice has.
doValidationanalyzes an input string and returns syntax and lint errros.doCompleteprovides completion proposals for a given location.doHoverprovides a hover text for a given location.findDefinitionfinds the definition of the symbol at the given location.findReferencesfinds all references to the symbol at the given location.findDocumentHighlightsfinds all symbols connected to the given location.findDocumentSymbolsprovides all symbols in the given documentdoCodeActionsevaluates code actions for the given location, typically to fix a problem.findColorSymbolsevaluates all color symbols in the given documentdoRenamerenames all symbols connected to the given location.getFoldingRangesreturns folding ranges in the given document.
css.filetypesdefauts to['css', 'less', 'wxss', 'scss'].css.trace.servertrace LSP traffic in output channel.css.execArgvaddexecArgvtochild_process.spawncss.validateenables validation for css files, defaulttrue.css.lint.[rulename]set rule for css lint, to get list of rules, trigger completion in yourcss-settings.jsonless.validateless.lint.[rulename]same as css, but for less.wxss.validatewxss.lint.[rulename]same as css, but for wxss.scss.validatescss.lint.[rulename]same as css, but for scss.
MIT