microsoft / microsoft/vscode-css-languageservice
Hover does not show information about local symbols without CTRL
@aeschli is already working on this.
Since May 14, 2020.
- Dominant language
- TypeScript
- Stars
- 384
- Forks
- 217
- Avg merge
- 3d 16h
- Merged PRs (30d)
- 14
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?
Without/With CTRL (without vscode-scss)
With vscode-scss
TypeScript example (without/with CTRL)
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.