eclipse 如何定义 IDE 在自动完成时使用的空格数?
eclipse How can I define how many spaces the IDE uses when it autocomplete?
我浪费了很多时间在我的代码中放置适量的空格,用光标来回移动,让它看起来完全符合我喜欢的方式...示例:
identifier space assignmentOperator
space someFunction space leftParenthesis
space argument space rightParenthesis space semicolon
代码示例:
char character = JOptionPane.showInputDialog( "Introduce the
character that is gonna draw the rectangle" ).charAt ( 0 ) ;
这种方式对我来说一切看起来都好多了,但是当 eclipse 自动完成时它不使用任何这些空间,所以我必须手动放置它们。
我浪费了很多时间在我的代码中放置适量的空格,用光标来回移动,让它看起来完全符合我喜欢的方式...示例:
identifier space assignmentOperator
space someFunction space leftParenthesis
space argument space rightParenthesis space semicolon
代码示例:
char character = JOptionPane.showInputDialog( "Introduce the
character that is gonna draw the rectangle" ).charAt ( 0 ) ;
这种方式对我来说一切看起来都好多了,但是当 eclipse 自动完成时它不使用任何这些空间,所以我必须手动放置它们。