At the moment QuickFixes work like we all know - you type in the first letters of what you want and it's going to complete the statement. Besides templates work just fine this way, setting up required variables to be filled in directly with tabbing through.
But wouldn't it be nice if you could say something like this:
TweenLite(x,y,z,rotationY) and the QuickFix would provide you with a TweenLite.to(${clip}, ${duration}, {${x}, ${y}, ${z}, ${rotationY}});
Because actually you cannot add something to existing QuickFixes - either somehow has declared a TweenLiteXYZRotationY template to exactly do the above or you have to work with a "basic" QuickFix (where no property is and add the wanted properties by hand AFTER tabbing through and the like. And that is really a mess.
Hopefully someone understands what I mean 