When working with Autoprefixer, you get used to writing prefixless SCSS.
If you discover you've been working in a Compass / Bourbon project without Autoprefixer and you can't add it, do this magical find and replace:
Find: ^(\s+)transform:(.+);
Replace: $1@include transform($2);
This will update all transform: transform1, transform2;
to @include transform(transform1, transform2);
, keeping your indentation intact.