我知道可以通过用
包围代码来阻止eclipse中的代码格式化// @formatter:off
// my awesome formatted code...
public Set<Person> transformCustomersToPersons(List<Customer> customers){
Set<Person> persons = new HashSet<Person>();
for (Customer customer : customers) {
persons.add(new Person(
customer.getFirstname(),
customer.getLastname(),
customer.getTitle(),
customer.getBirthday(),
customer.getAddress(0).getCity(),
customer.getAddress(0).getStreet(),
customer.getAddress(0).getHousenumber(),
customer.isMan() ? "m" : "w",
customer.getCardNumber())
);
}
return persons;
}
// @formatter:on
但我不想一直手动编写它。只需标记代码,按热键即可防止格式化。
有谁知道怎么办? THX!
答案 0 :(得分:9)
是的,这是可能的:
创建新模板:
Windows->Preferences->Java->Editor->Templates->New
(截图)
为模板命名,如non-formater
,并放置模式:
// @formatter:off
${line_selection}${cursor}
// @formatter:on
现在,您可以选择文本并键入 Alt + Shift + Z 和一些模板 - 这里 4
答案 1 :(得分:0)
您可以使用扩展点定义键序列来创建自己的热键。 在eclipse中查看和编辑键盘快捷键:Eclipse - &gt;偏好 - &gt;一般 - &gt;编辑 - &gt;密钥。
添加一个供您阅读的密钥,从而选择代码并运行此热键。