当前位置: 技术问答>java相关
jbuilder中在哪里设置可以实现像VC里那样的自动缩进(在线给分)
来源: 互联网 发布时间:2015-05-10
本文导语: jbuilder中在哪里设置可以实现像VC里那样的自动缩进(在线给分) | 是不是指回车的时候自动按tab长度对齐。 如果是:JBuilder-->tools-->editor Options-->editor-->editor options-->有五项你看着办。 如果是...
jbuilder中在哪里设置可以实现像VC里那样的自动缩进(在线给分)
|
是不是指回车的时候自动按tab长度对齐。
如果是:JBuilder-->tools-->editor Options-->editor-->editor options-->有五项你看着办。
如果是想把一段程序整体往左或右移,那就不知道了。
如果是:JBuilder-->tools-->editor Options-->editor-->editor options-->有五项你看着办。
如果是想把一段程序整体往左或右移,那就不知道了。
|
JBuilder-->tools-->editor Options-->editor里BLOCK INDENT设成你想缩进的距离就可以了
|
回车以后自动缩进并不好,比如:
int i;
String sString;
String sNewString;
会变成如:
int i;
String sString;
String sNewString;
难道你再对齐?
我还是手工缩进的,如果一整段程序要增加缩进,可以选中一段后按Tab键,如果要减小缩进,可以按“Shift”+“Tab”。
int i;
String sString;
String sNewString;
会变成如:
int i;
String sString;
String sNewString;
难道你再对齐?
我还是手工缩进的,如果一整段程序要增加缩进,可以选中一段后按Tab键,如果要减小缩进,可以按“Shift”+“Tab”。