From kdevelop-bugs Tue Aug 29 12:27:01 2006 From: Christian Schneider Date: Tue, 29 Aug 2006 12:27:01 +0000 To: kdevelop-bugs Subject: [Bug 133182] New: Editor indentation style differs from KDevelop's Message-Id: <20060829142700.133182.mail () chrschn ! de> X-MARC-Message: https://marc.info/?l=kdevelop-bugs&m=118306952810285 ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=133182 Summary: Editor indentation style differs from KDevelop's indentation style Product: kdevelop Version: unspecified Platform: unspecified OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: NOR Component: general AssignedTo: kdevelop-bugs kdevelop org ReportedBy: mail chrschn de Version: 3.3.92 (using KDE 3.5.4, compiled sources) Compiler: gcc version 3.4.4 OS: Linux (x86_64) release 2.6.16.22 I've configured the editor to use C-style indentation. When I type in a class declaration, I get this indentation: class Foo { public: Foo(); } The indentation settings in KDevelop are set to not indent the "public" keyword. When I run the code reformater, I get the correct result: class Foo { public: Foo(); } Is there any way to synchronize the behaviour of the editor with the source code formater to get the correct indentation style while typing?