PS-121.252: SCSS issues
Hello
Some remarks on SCSS files editor:
- tabs (between colon and variable value) are being replaced by spaces in variable declarations
- no codecompletion for keywords (such as: @mixin, @include, @if, @each etc...)
- no parameters info while invoking a mixin or function
and a suggestion:
- show color square in gutter not only at the point of assigning the color to variable, but also at any point where it's being referred
Regards.
Please sign in to leave a comment.
Hi there,
You can check for existing tickets for currently known issues as well as report your own bugs or feature requests at corresponding Issue Tracker: http://youtrack.jetbrains.com/issues/RUBY?q=Subsystem%3A+SASS
Hi,
There is issues that closely related to your remarks, feel free to vote for them:
Could you please provide code sample in which color gutter doesn't appear for variable reference?
In the sample below color gutter appears for both declarations (PHPStorm 121.215):
.someClass {
$variable: blue;
color: $variable;
}
Thanks for the links. I will take them into consideration.
Well, just checked the provided example - it works ok. However these are not working:
$_color_brown: #825319 !default; <---------- color box are shown
$_color_text: $_color_brown;<------------ not shown
.....
p {
color: $_color_text; <------------ not shown either
}