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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
When the plugin is active in IntelliJ IDEA, some live formatting are not working the same way as when the code is formatted.
Examples:
In builder style, the line will be too long so a new line should indent the code
Original code:
RestTemplate restTemplate = new RestTemplateBuilder().requestFactory(SimpleClientHttpRequestFactory::new).build();
If I invoke carriage return after the constructor (wrong):
RestTemplate restTemplate = new RestTemplateBuilder() .requestFactory(SimpleClientHttpRequestFactory::new).build();
If I invoke the formatter manually (code reformat action in IJ) (correct):
A similar, yet slightly different, behaviour occurs with Javadoc
/** * @author Stephane Nicoll */ public class Sample { }
If the cursor is at the end of the first line (/**) and I invoke a carriage return, I get the following (wrong):
/**
/** * * @author Stephane Nicoll */ public class Sample { }
Again, invoking code reformat fixes it.
The text was updated successfully, but these errors were encountered:
Possibly related to #33
Sorry, something went wrong.
ef2ddae
No branches or pull requests
When the plugin is active in IntelliJ IDEA, some live formatting are not working the same way as when the code is formatted.
Examples:
In builder style, the line will be too long so a new line should indent the code
Original code:
If I invoke carriage return after the constructor (wrong):
If I invoke the formatter manually (code reformat action in IJ) (correct):
A similar, yet slightly different, behaviour occurs with Javadoc
Original code:
If the cursor is at the end of the first line (
/**
) and I invoke a carriage return, I get the following (wrong):Again, invoking code reformat fixes it.
The text was updated successfully, but these errors were encountered: