The first SassyStudio specific feature is
support for the functionality to get intellisense in other files
without the using the @import
directive.
With large applications you’ll typically find yourself breaking your SCSS files into logical groups, typically centered around functional components. This is clean and efficient, but you lose intellisense when you do… until now.
To accomplish this, I have started support for the reference
tag in a triple slash (///
) comment.
An example of this would be
/// <reference path="variables" />
To get intellisense for multiple files, just add multiple references
/// <reference path="variables" />
/// <reference path="mixins" />
The reference
tag works the same as a @import
statement, and it can serve
as documentation for what files the current file you are working on depends on.
If you have any other ideas for what you would like to see supported in SassyStudio, please feel free to submit a feature request on GitHub