Skip to content

Add automatic breaking lines optionsΒ #126

Open
@lsoranco

Description

@lsoranco

I have an old legacy code that is poorly formatted. Most of the lines that should be split are a command "write", and I should be able to define some default procedure to breaking certain lines.

For instance:

WRITE (FILE_ID, *) "my very long line of text"

Should trivially become

WRITE (FILE_ID, *) &
   "my very long line of text"

And things like

WRITE (FILE_ID, *) "you really out did yourself in this line of text", arguments, "it just keeps on going"

Should be broken into

WRITE (FILE_ID, *) &
   "you really out did yourself in this line of text", &
   arguments, "it just keeps on going"

Currently the programm just gives a warning, which helps, but is not a sufficient solution

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementEnhancement to existing feature

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions