Sublime text 2 how to delete comments only
问题 In my sass code, I have inline comments and I wish to remove these in sublime text. Is it possible to permanently delete all comment content alone? @function emCalc($values) { $emValues: ''; $max: length($values); //Get the total number of parameters passed @for $i from 1 through $max { $value: (nth($values, $i)); //Take the individual parameter $value: $value / ($value * 0 + 1); //Doing this gets you one unit (1px) $value: $value / $em-base * 1em; //Divide the px value by emBase and return