intellij idea - How do I bring back a clicked on "easier to read code display"? -
i notice idea has ability render "raw" type parameters in java in such way easier read. if have class
class margininfo { margininfo( boolean top, boolean right, boolean left, boolean bottom ) {
when calling it, actual code is
new margininfo( true, true, true, true );
but renders as
new margininfo( top: true, right: true, left: true, bottom: true );
once click on rendered code, rerenders actual code. after clicking code, if editing elsewhere stays actual code. there way idea have signature go rendering in "easier read" format after clicking? (also feature have name?)
Comments
Post a Comment