Hi,
VAX is (still) great!
I'm not sure if VAX can do this, but consider this example code (C++, using Visual Studio 2008):
namespace MySpace
{
class MyClass
{
public:
MyClass();
}
}
If I now use Alt+F8 (Edit.FormatSelection) to format the text, I will end up with an extra level of indention, which we prefer not to have:
namespace MySpace
{
class MyClass
{
public:
MyClass();
}
}
Usually, all of our files contain such a namespace statement at the very start of the file, which is then followed by lots of declarations or implementations, and the block is then closed at the end of the file.
Having this extra indention for all declarations/implementations is a bit annoying as it is taking up unnecessary horizontal space.
So: can Visual Assist make this extra indention for namespaces optional?
Thanks,
Koen