MhMadHamster / vscode-postcss-language

postcss syntax support extension for VSCode
MIT License
34 stars 7 forks source link

incorrect highlight for multiple nesting #34

Open ColCh opened 4 years ago

ColCh commented 4 years ago

given this example

.Text {
    &__bold {
        font-weight: bold;
    }
    &__red {
        color: red;
    }

    &__bold&__red {
        border: 1px red solid;
    }
}

produces such highlight

image

but it should look like this (but without comma)

image