Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Wrong syntax highlighting for property following nested properties #250

Open
aeschli opened this issue Mar 28, 2018 · 1 comment
Open

Wrong syntax highlighting for property following nested properties #250

aeschli opened this issue Mar 28, 2018 · 1 comment

Comments

@aeschli
Copy link
Contributor

aeschli commented Mar 28, 2018

  1. Have the below content in a scss file. Observe the last property is in white

image

/* nested properties */
.funky {
  font: 2px/3px {
    family: fantasy;
    size: 30em;
    weight: bold;
  }
  color: black;
}

Copied from original issue: microsoft/vscode#46753

@burtek
Copy link

burtek commented Sep 17, 2019

Same here.

image
image

GitHub syntax highlighting is also affected:

.button {
    @include fontDemi;

    border: 0 {
        radius: 30px;
    };
    background-color: $buttonColor;
}
.button {
    @include fontDemi;

    border: {
        radius: 30px;
    };
    background-color: $buttonColor;
}

Taken from: microsoft/vscode#81038

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants