Dirk Brömmel
Dirk Brömmel
When a community curator receives a request to add a record to the community, the only options are accept/reject. There is no workflow in place which would enable a feedback...
Relational operators may be confused with variable names in longer conditional statements. Take, e.g. ```fortran if ( a .gt. b .and. ne .lt. c) ``` which will be re-formatted to...
This is a sort of brute-force workaround to avoid #153. Likely not up to the standard of `fprettify` but 'works-for-me'. Test amended to cover the corner case, I think.
If a Fortran line is continued across multiple lines and contains a relation that is going to be replaced, linebreaks are not correct and the output is wrong (only tested...
I've come across misalignments when `select case` blocks included a `name: ` with them, e.g. ```fortran case_label: select case (r) case (1) case_label case (2) case_label end select case case_label...