vscode-scss
vscode-scss copied to clipboard
Feature Request: scss root variables with intellesense
Would be nice to be able to get intellisense for variables throughout the project. For example I have a main _variables.scss
file with something like this
:root{
--app-bg: rgb(236, 236, 242);
--app-text: #646c9a;
--app-text-secondary: #74788d;
}
It would be really nice if when working in another file - theme.scss
to be able to get intellesense as i type the var
keyword
.my-background{
background-color: var // intellisense appears with the list of root variables
}