块注释时,每行前面都有一个 *:
/*
* StringBuffer sql = new StringBuffer();
* List<Object> params = new ArrayList<Object>();
*/
解决方案:
在 Window->Prefrences->Java->Code Style->Formatter,点击New新建 Active profile,
然后在Comments项中,找到General settings组项,对"Enable block comment formatting"取消勾选,点击Apply->OK.
代码编辑后保存,格式化到没有修改的代码:
解决方案:
在 Window->Prefrences->Java->Editor->SaveAction,找到Format source code,选择Format edited lines,点击Apply->OK. (如果是灰色不可编辑,先勾选Perform the selected actions on save 和 Format source code)
编辑代码的提示,联想功能设置:
解决方案:
在 Window->Prefrences->Java->Editor,选择Content Assist,在右边的“Auto-Activation”下面的“Auto Activation triggers for java”这个选项,将“Auto Activation triggers for java”得值修改为".abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",点击Apply->OK
修改字体大小:
解决方案:
在 Window->Prefrences->General->Appearance,选择Colors and Fonts,在右边找到Basic,展开选择最后一项Text Font,点击Edit,找到"大小(S)",修改为自己想要的大小,确定,点击Apply->OK
不更新文件引入的顺序:
说明:本地的文件引入和SVN上其他人提交的代码引入顺序不同,每次提交或者比较的时候,总是会有这部分差异,查看对比混乱,且容易弄乱别人的代码。
解决方案:
在 Window->Prefrences->Java->Editor,选择Save Actions,取消勾选Organize imports.