indent_col1_comment

Whether to indent comments found in first column.

Possible values are true or false, default false.

Examples

true

Before:

// main comment
int glz = 2;

int main()
{
    int x = 10;
    int y = 20;

// Comment line one

    x = y + 21;

    return x;
}

After:

// main comment
int glz = 2;

int main()
{
    int x = 10;
    int y = 20;

    // Comment line one

    x = y + 21;

    return x;
}

false

Before:

// main comment
int glz = 2;

int main()
{
    int x = 10;
    int y = 20;

// Comment line one

    x = y + 21;

    return x;
}

After:

(no changes applied)

See also