Autocompletion for multiline values doesn't work as expected. This concerns mainly sass-maps, which are usually not written in one line due to readability reasons. e.g.
$map: (
value: 123,
color: #FAF
);
is shown as
$map: (
It would be great, if the line breaks and unnecessary spaces would be removed in the preview:
$map: (value: 123, color: #FAF)
Btw, this also affects the incoming pull request #5. When used on a mixin like
Autocompletion for multiline values doesn't work as expected. This concerns mainly sass-maps, which are usually not written in one line due to readability reasons. e.g.
is shown as
It would be great, if the line breaks and unnecessary spaces would be removed in the preview:
Btw, this also affects the incoming pull request #5. When used on a mixin like
the preview AND the inserted text are wrong:
better:
or (inserting only required params):