Visual studio IDE gives an option to outline the if, for, foreach, while, switch case etc.
Just go to Visual Studio -> Tools -> Options -> Text Editor -> C\C++- > View
and set Outline Statement Blocks
to true.
In Visual Studio 2012+, the path is Visual Studio -> Tools -> Options -> Text Editor -> C\C++- > Formatting
.
代码折叠可以使用大纲视图
在当前环境下,可以对一个函数进行折叠,如果能够对函数中的代码块进行折叠就更好了。VS2010 以上版本提供了该功能,只是默认设置为 False。通过 工具-->选项(Tools->Options… )弹出的窗口进行设置:
显示效果
通过以上设置可以看下当前的显示效果,显然比最开始的要好得多。
其他一些主题和插件的设置,可以参考网上很不错的博文,地址是 http://www.ishenping.com/ArtInfo/3926347.html