wkillerud / some-sass

Improved support for SCSS, Sass indented and SassDoc. Workspace awareness and full support for Sass modules.
https://wkillerud.github.io/some-sass/
60 stars 6 forks source link

feat: add {module} as a magic string for the afterModule setting #229

Closed wkillerud closed 2 months ago

wkillerud commented 2 months ago

This should fix an issue seen in SublimeText where the editor would replace the module itself (eg module.$variable, module end up as .$variable).

To use it, apply this setting:

{
  "settings": {
    "somesass": {
      "completion": {
        "afterModule": "{module}"
      }
    }
  }
}