user3213103
user3213103

Reputation: 133

Visual Studio 2013 C++ - guidelines

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. Dev C++

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

Answers (2)

user1196549
user1196549

Reputation:

Visual Studio allows you to

  • automatically format the code with indentation adjustment (Edit > Avanced > Format Selection)

  • collapse/expand blocks (Edit > Outlining > ...)

Upvotes: 0

jpw
jpw

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

Related Questions