in reply to Re: Why does perltidy mess up whitespace before inline comments and equals?
in thread Why does perltidy mess up whitespace before inline comments and equals?
gets changed to this:$d->{status} = 'queued'; # something $d->{description} = 'The action'; # other thing $d->{id} = '12345'; # Identifies action
...which is definitely better in that case.$d->{status} = 'queued'; # something $d->{description} = 'The action'; # other thing $d->{id} = '12345'; # Identifies action
...it still pushes the comment way out to the right to align with some non-existent other comments. That's not necessary.$d->{status} = 'queued'; $d->{description} = 'The action'; $d->{id} = '12345'; # Identifies action
$d->{status} = 'queued'; $d->{description} = 'The action'; $d->{id} = '12345'; # Identifies action
This sets "static side comments", and sets the identifier for those to the usual # character-ssc -sscp=#
|
|---|