I have two files:
variables.scss:
$my_var: #fff;
module.scss:
@import 'variables';
.body { background: $my_var;}
And Visual Studio provides me nice hints - when I'm typing $my
in module.scss I see all variables from imported files that matches to $my
.
Simple.
But Sublime Text 3 autocompletes only variables from module.scss, not from other imported files. I have installed All Autocomplete package, it doesn't work... Any ideas? It is important feature for me...