SublimeText / Sass

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

Add support for debugger scope #70

Closed niksy closed 3 years ago

niksy commented 3 years ago

This will make it possible to style @warn, @debug and @error differently (similar to debugger in JavaScript).

braver commented 3 years ago

Looks good! Would it make sense to separate out debug from the others? Their usage is different, you wouldn't want to keep the debug statements around in production code, but the others you might (ie. I imagine you'd style the debugger statements in a loud color).

niksy commented 3 years ago

Makes sense! I’ve separated debug to keyword.control.at-rule.debugger.sass and others to keyword.control.at-rule.warn.sass.

braver commented 3 years ago

Excellent!