We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The current Eclipse formatter always joins wrapped lines. If you want to explicitly wrap lines, you need to force wrapping with a trailing //
//
We should configure the following property in .settings/org.eclipse.jdt.core.prefs:
.settings/org.eclipse.jdt.core.prefs
org.eclipse.jdt.core.formatter.join_wrapped_lines=false
Also indent case inside a switch:
case
switch
org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch=true
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The current Eclipse formatter always joins wrapped lines. If you want to explicitly wrap lines, you need to force wrapping with a trailing
//
We should configure the following property in
.settings/org.eclipse.jdt.core.prefs
:org.eclipse.jdt.core.formatter.join_wrapped_lines=false
Also indent
case
inside aswitch
:org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch=true
The text was updated successfully, but these errors were encountered: