vscode-scss icon indicating copy to clipboard operation
vscode-scss copied to clipboard

Feature Request: scss root variables with intellesense

Open IsaacSomething opened this issue 5 years ago • 0 comments

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
   }

IsaacSomething avatar Jan 16 '20 06:01 IsaacSomething