microsoft / vscode

Visual Studio Code
https://code.visualstudio.com
MIT License
163.83k stars 29.13k forks source link

[scss] Breadcrumbs in scss file not working for multi-line selectors #55091

Open usernamehw opened 6 years ago

usernamehw commented 6 years ago

Issue Type: Bug

Having scss file:

.btn,
.link {
    &.another-class {

    }
    &.classs {

    }
}

breadcrums

Expected path to change to .btn &.another-class and .btn &.classs (Basically, the same as it works if you remove the second selector (.link)).

VS Code version: Code - Insiders 1.26.0-insider (5fae91d61f12726e149fe5baed342eac2fbf8f88, 2018-07-25T02:04:01.629Z) OS version: Windows_NT x64 10.0.17134

vscodebot[bot] commented 6 years ago

(Experimental duplicate detection) Thanks for submitting this issue. Please also check if it is already covered by an existing one, like:

usernamehw commented 6 years ago

Not multi-line; any multiple selectors: .btn, .link won't work too.