Open
Description
Hello, I'm the maintainer of the vscode-scss
plugin.
As part of the plugin update, I want to disable IntelliSense providers for the current file. This is necessary in order to not show duplicate symbols in the tooltips (completion, hover, …). Maybe you can suggest something else?
I found that Hover does not display information about the current symbol. Just take a look at the example below:
@mixin mixin($a: 1, $b) {
content: 'mixin';
}
@function function() {
@return 1;
}
$variable: 1;
.test {
content: $variable + function();
@include mixin();
}
Are you considering adapt the logic of my plugin or TypeScript for this service?