Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 1.73 KB

README.md

File metadata and controls

42 lines (30 loc) · 1.73 KB

Smart CSS Autocomplete CI

Autocomplete CSS properties smarter. SCA collects local CSS properties usage statistic to provide smart sorted hints. In case of not enough individual static it uses global usage statistic to suggest you best options.

Usage Example

Hints

For better experience we strongly suggest to switch VS Code parameter Text Editor - Suggest Selection to first option. In that case SCA will preselect the most used CSS property automatically.

You also can try to disable standard props autocomplete

"[css]": {"editor.suggest.showProperties": false},
"[less]": {"editor.suggest.showProperties": false},
"[sass]": {"editor.suggest.showProperties": false},
"[scss]": {"editor.suggest.showProperties": false},

Installation

Install through VS Code extensions. Search for smart-css-autocomplete

Visual Studio Code Market Place: Smart CSS Autocomplete

Can also be installed in VS Code: Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.

ext install saionaro.smart-css-autocomplete

Running the Development Mode

  • Run npm install in this folder.
  • Open VS Code on this folder.
  • Press Ctrl + Shift + B to compile the extension.
  • Switch to the Debug viewlet.
  • Select Launch Client from the drop down.
  • Run the launch config.
  • In the [Extension Development Host] instance of VSCode, open a document in CSS language mode.