Hi,
is it possible to configure Visual Assist to not add full namespace to member methods when using "Create implementation" ?
My CPP files are containing using namespace at the top of file:
using namespace Module::Namespace::XXX;
so it would be great if any created/moved implementations doesn't repeat whole namespace again:
Module::Namespace::XXX::CClass::method() ....
and instead of that created only
CClass::method() ....
Is there any way how to configure it?
Thanks!