Indentation - Environment Division

Specify preferences for how formatting changes the code in the Environment Division.

You change these preferences from Tools > Options > Text Editor > Micro Focus COBOL > Code Style > Formatting > Environment Division.

Ensure new line after paragraph in Configuration Section
Specify whether to insert a new line after a heading in the Configuration Section.

For example, with this option disabled:

       environment division.
       configuration section.
           source-computer. mf.
           object-computer. mf.
       special-names.
           console is crt.

For example, with this option enabled:

       environment division.
       configuration section.
           source-computer.
               mf.
           object-computer.
               mf.
       special-names.
           console is crt.