Source insight添加工具自动排版
时间:2014-04-30 03:29:21
收藏:0
阅读:461
当在网上找了一些别人的程序拿来学习,用Source insight来看时,会不会因为代码太乱看了义愤填膺呢?
有很多集成的开发环境可以自动排版,但source insight却不行!不过,有工具和配置,可以帮助完成这个事情:
1,下载astyle工具:http://download.csdn.net/detail/taixinlfx/4306730
2,打开你的SourceInsight,
选择菜单“Options-->Custom Commands-->Add”, 输入Artistic
Style(可以随便输入一个名字)。
3,Run中输入: "C:\Program Files\astyle\astyle.exe" -n -t --style=ansi %f
(注意路径不可以是中文的)
4,Dir留空,将Iconic
Window, Pause when done, Wait until done, File,then Line 四项前打上勾。
5,然后点对话框中右侧的按钮“Menu”,
Menu--->Menu-->View--><end of menu>, 右侧Insert,
OK.
6,此时在SourceInsight中的View菜单下多了个Style的子菜单选项,可以用它来对单个C/C++文件进行格式化。
参考链接:http://blog.csdn.net/taixinlfx/article/details/7573411
评论(0)