how to add code folding to output in visual studio output window

56 Views Asked by At

It is possible to use code folding inside the source in visual studio, however it would also be very useful if folding could be added to output made to the visual studio output window

If you want to write to output window from within a unittest case then you can use following:

#include "CppUnitTest.h"
using namespace Microsoft::VisualStudio::CppUnitTestFramework;

TEST_METHOD(testingsomething)
{
    Logger::WriteMessage("Hello output window");
}

However if output is large, then it would be very useful to add some folding to it - is that possible in visual studio? I know it is possible in the VIM editor

0

There are 0 best solutions below