SublimeText / Sass

Sass and SCSS syntax for Sublime Text
https://packagecontrol.io/packages/Sass
MIT License
50 stars 8 forks source link

Function after 'in' in @each directive #46

Closed sandrojohanides closed 5 years ago

sandrojohanides commented 5 years ago

fn() should be blue as in lenght() in @for. Also not sure of the different colors of in, from and through.

screen shot 2018-11-27 at 13 00 41

@each $item, $item2 in $items {}
@each $item, $item2 in fn($items) {}
@for $item from 0 through length($items) {}
braver commented 5 years ago

in is scoped differently for some reason, it makes more sense to simply scope it as an operator. Going to fix that too.