Reputation: 133
Few years back I've used Dev C++, just recently while working on some projects I remembered one its feature I miss a lot.
My English is not so great, so probably the word I've used isn't exactly right, but here is the picture.
See that lines by if/for/while/..., that identify exactly where it begins and where it ends.
Is it possible to add something like this is Visual Studio 2013?
Upvotes: 1
Views: 618
Reputation:
Visual Studio allows you to
automatically format the code with indentation adjustment (Edit > Avanced > Format Selection)
collapse/expand blocks (Edit > Outlining > ...)
Upvotes: 0
Reputation: 44871
Yes, via extensions. There's several: Indent Guides and Productivity Power Tools for example. The latter provides a lot of [useful?] modifications.
Upvotes: 1