Open
Description
- VS Code version: 1.92.2
- Extension version: 3.6.3
- Operating system: Windows
Reproducible Case:
https://github.com/MenSeb/some-sass-bug/tree/main/src/some-sass-hover
Steps to Reproduce:
// index.scss
@use 'sass:math';
@use '../modules' as *;
@use '../utils' as *;
/// Dummy function
/// @param {Any} $value - the value to test
/// @return {Any} - the `$value`
@function dummy($value) {
@return $value;
}
// This shows the information on hover
@debug math.compatible(1, 2);
// This shows the information on hover
@debug test(10);
// This shows the information on hover
@debug dummy(10);
// This does not show the information on hover
@debug comparable($number1: 1, $number2: 2);
// This does not show the information on hover
@debug color-blue(#fff);
// This shows the information on hover
@debug color.blue(#fff);
There seems to be some inconsistency in displaying information on hover.
It does not work for SASS global aliases and anything that was forwarded with prefix.