This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 152501 - indentation in c/c++ in braces
Summary: indentation in c/c++ in braces
Status: NEW
Alias: None
Product: cnd
Classification: Unclassified
Component: Editor (show other bugs)
Version: 6.x
Hardware: PC Linux
: P3 blocker (vote)
Assignee: Alexander Simon
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-11-06 09:48 UTC by gautiery
Modified: 2008-11-07 20:22 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description gautiery 2008-11-06 09:48:46 UTC
I use hierarchy of Macros to create for structure data. Here is a simple example of what it looks like : 
                    {MACRO ("NAMES", _names);
                        {MACRO ("Name1", _name1);}
                        {MACRO ("Name2"),_name2);}
                    }
When I use the indentation it becomes :
    {
        MACRO("NAMES", _names);
        {
            MACRO("Name1", _name1);
        }
        {
            MACRO("Name2"), _name2);
        }
    }

which keeps somehow the hierarchy but introduces a lot of extraneous space and makes it harder to read. Is it possible
to keep the first style ?