Packages icon indicating copy to clipboard operation
Packages copied to clipboard

[CSS] Remove completion restrictions

Open deathaxe opened this issue 1 year ago • 0 comments

Suggest properties also within meta.selector as this is the most likely scope in front of nested selectors, if a property is not yet terminated by semi-colon.

As completions are much more likely, do no longer suppress word completions.

Without this commit auto-completion no longer provides property-name completions in front of nested selectors.

Example:

div {
  color: red;
  bo|  <- no more completions here

  h2 {
    text-decoration: none;
  }
}

reported at https://github.com/SublimeText/Sass/issues/107

deathaxe avatar May 06 '24 18:05 deathaxe