In the first picture it should also show <element name="jmeno"> like in the second one.
Contributor guide
Tech stack
typescriptcss
Domain
frontenddeveloper experience
Issue type
bug
DifficultyEstimated implementation difficulty for a new contributor, from 1 for very small changes to 5 for expert-level work.
2
Estimated timeA rough time range for an experienced contributor to investigate, implement, test, and prepare a pull request.
under 1 hour
Activity statusHow available the issue appears right now: fresh, active, stale, blocked, or waiting on maintainer input.
stale
ClarityHow clearly the issue explains the expected change, acceptance criteria, and next step.
clear
Prerequisites
Basic understanding of SCSSFamiliarity with VS Code extension development
Newbie friendlinessA 1-100 score estimating how approachable this issue is for first-time contributors.
60
Research direction
Investigate the CSS/SCSS tokenizer in VS Code's source code, likely in the `extensions/css language features` or `src/vs/editor/contrib/suggest` directory. Look for how selectors are parsed and displayed in the hover or completion widget. The issue mentions a discrepancy in showing `<element name="jmeno">` which suggests a missing element name in the selector display. Examine the `TextMateSyntax` or `CSSParser` classes to understand how selectors are rendered. Consider adding or fixing the logic that extracts element names from SCSS selectors.
[scss] Wrongly shown selector in SCSS · Microsoft/vscode#160987 | Good First Issue