Open
Description
I tried to format code which has a variable called ne
used in the following way:
if (skipreference .and. ne .gt. 0) then
write (*,*) 'something'
end if
Expected result:
if (skipreference .and. ne .gt. 0) then
write (*, *) 'something'
end if
Actual result with fprettify 0.3.7
:
if (skipreference.and .ne. gt.0) then
write (*, *) 'something'
end if
I noticed when trying to compile the code, which obviously wasn't possible anymore.