I have defined the VA Snippet for "Refactor Create Implementation" as following:
$SymbolType$
$SymbolContext$($ParameterList$) $MethodQualifier$
{
$end$$MethodBody$
}
but it gets formatted with an extra tab before the function name like this:
struct MyClass {
int myFunction(); // using Create Implementation for this...
};
// ...produces this:
int
MyClass::myFunction() // there's an extra tab beginning the line
{
}