some-sass

Modern SCSS language server. Full support for `@use` and `@forward`, including aliases, prefixes and hiding.

Downloads
8.6K
Stars
43

Bot releases are visible (Hide)

some-sass - [email protected]

Published by github-actions[bot] 6 months ago

some-sass 3.1.1 (2024-04-24)

Bug Fixes

  • broken image link in published vsix (1b7f5d6)
some-sass - [email protected]

Published by github-actions[bot] 6 months ago

some-sass 3.1.0 (2024-04-24)

Bug Fixes

Features

some-sass - [email protected]

Published by github-actions[bot] 6 months ago

some-sass-language-server 1.2.0 (2024-04-24)

Features

some-sass - [email protected]

Published by github-actions[bot] 7 months ago

some-sass-language-server 1.1.0 (2024-04-03)

Bug Fixes

  • fall back to default settings instead of crashing if no settings are defined (51c9a5a)

Features

  • add --debug flag to run the development build (ffc5410)
some-sass - [email protected]

Published by github-actions[bot] 7 months ago

some-sass 3.0.1 (2024-04-02)

Dependencies

  • some-sass-language-server: upgraded to 1.0.3
some-sass - [email protected]

Published by github-actions[bot] 7 months ago

some-sass-language-server 1.0.3 (2024-04-02)

Bug Fixes

  • remove redundant workspace initializationOption requirement (d3ee9a3)
some-sass - [email protected]

Published by github-actions[bot] 8 months ago

some-sass-language-server 1.0.2 (2024-03-02)

The language server powering Some Sass is now available on npm as a standalone executable, meaning you can use it with any LSP compatible editor. Big thanks go out to @simeonoff for setting this in motion 🌟

Check out the language server README if you're looking to improve the developer experience for SCSS in your editor of choice.

Bug Fixes

some-sass - [email protected]

Published by github-actions[bot] 8 months ago

some-sass 3.0.0 (2024-03-02)

chore

  • bump engines to match vscode types (831c489)

BREAKING CHANGES

  • minimum vscode version is now 1.86.0
some-sass - 2.14.8

Published by github-actions[bot] 9 months ago

2.14.8 (2024-01-21)

Bug Fixes

  • remove double dots for Sass built-ins in Svelte, Vue, Astro (fddd8f5)
  • suggest built-in function with signature also when there's text after the dot (43a8d80)
some-sass - 2.14.7

Published by github-actions[bot] 9 months ago

2.14.7 (2024-01-19)

Bug Fixes

  • no longer omit the $ in variable completions for Svelte (25b216f)
some-sass - 2.14.6

Published by github-actions[bot] 10 months ago

some-sass - 2.14.5

Published by github-actions[bot] 11 months ago

2.14.5 (2023-12-04)

Bug Fixes

  • deps: update dependencies (non-major) (62a75da)
some-sass - 2.14.4

Published by github-actions[bot] 11 months ago

2.14.4 (2023-11-19)

Bug Fixes

  • use latest css-languageservice (12eb41a)
some-sass - Add support for `show`

Published by wkillerud 11 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/wkillerud/vscode-scss/compare/2.14.2...2.14.3

some-sass - 2.14.2

Published by wkillerud about 1 year ago

What's Changed

Full Changelog: https://github.com/wkillerud/vscode-scss/compare/2.14.1...2.14.2

some-sass - 2.14.1

Published by wkillerud about 1 year ago

A bugfix release this time. Thanks to @nagman and @rjgotten for the bug reports.

What's Changed

  • Don't follow more than the first use (#61)
  • Don't overwrite hover info with built-in (#63)
  • Don't suggest SassDoc annotations on space in document blocks, as it gets noisy

Full Changelog: https://github.com/wkillerud/vscode-scss/compare/2.14.0...2.14.1

some-sass - Color decorators

Published by wkillerud over 1 year ago

What's Changed

Full Changelog: https://github.com/wkillerud/vscode-scss/compare/2.13.1...2.14.0

some-sass - Completions get same info as hover

Published by wkillerud over 1 year ago

Fix a needless limitation in completion suggestions, where they would not show the same rich information as on hover. https://github.com/wkillerud/vscode-scss/pull/58

There's a known limitation for color suggestions. VS Code does not support markdown documentation for color suggestions (yet), so they may look a bit different from on hover.

Full Changelog: https://github.com/wkillerud/vscode-scss/compare/2.13.0...2.13.1

some-sass - Configure suggestion style

Published by wkillerud over 1 year ago

New setting: Suggestion Style

Mixins with @content SassDoc annotations and %placeholders get two suggestions by default:

  • One without { }.
  • One with { }. This one creates a new block, and moves the cursor inside the block.

If you find this noisy, you can control which suggestions you would like to see:

  • All suggestions (default).
  • No brackets.
  • Only brackets. This still includes other suggestions, where there are no brackets to begin with.

Bugfix for placeholder suggestions

Fixed an issue of missing suggestions when hitting Cmd/Ctrl+Space, when there was text after %.

%chat|  /* Should see for instance %chatSearch when hitting ctrl+space */

Full Changelog: https://github.com/wkillerud/vscode-scss/compare/2.12.0...2.13.0

some-sass - Improvements to placeholder selectors

Published by wkillerud over 1 year ago

What's Changed

Add code suggestions when implementing placeholder selectors, based on tracked usages (#54).

https://user-images.githubusercontent.com/1223410/235316476-635b727c-a838-45ff-b282-76f821e8fb1d.mp4

The video and fixtures demo with @use, but this setup with @import works as well:

main.scss
_discord.scss
_theme.scss
/* main */
@import "./theme";
@import "./discord";
/* discord */
.app-asdfqwer1234 {
  @extend %app !optional;
}

.chat-qwerasdf1234 {
  @extend %chat !optional;
}
/* theme */
%| /* suggests %app and %chat */

Full Changelog: https://github.com/wkillerud/vscode-scss/compare/2.11.2...2.12.0