Author Topic: Source code formatter behavior  (Read 4674 times)

Offline libfab

  • Multiple posting newcomer
  • *
  • Posts: 45
Source code formatter behavior
« on: July 25, 2008, 07:55:28 pm »
The source code formatter plugin is one of the most useful ones, but I've recently had issues with in the following contexts:

if (condition)
    (macro)
else
    (...)

what happens is that when the macro does not end in a semi-colon, the plugin outputs:

if (condition)
   (macro)
   else
      (...)

which is undesirable indentation. Everything comes back to normal on adding an (irrelevant) semi-colon at the end of (macro).

As the plugin's algorithm is based on semicolon separators, I'm afraid that the issue should be tricky to fix in its most general form.

Best, Fab