Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | C++ indenter: Respect user indent with stream operators. | Christian Kamm | 2010-07-15 | 1 | -5/+15 | |
| | | | | Reviewed-by: Erik Verbruggen | |||||
* | Fix brace states | mae | 2010-07-12 | 1 | -3/+3 | |
| | | | | | | | | The lexer needs its own lexerState, before it was using the syntax highlighter user state. This breaks the brace depth calculation of the highlighter. Reviewed-by: Roberto Raggi | |||||
* | Add missing license headers. | Christian Kamm | 2010-07-09 | 1 | -0/+29 | |
| | ||||||
* | C++ indenter: Fix for extending if conditions. | Christian Kamm | 2010-07-08 | 1 | -5/+7 | |
| | | | | Task-number: QTCREATORBUG-1825 | |||||
* | C++ indenter: Be more careful when comparing states. | Christian Kamm | 2010-07-08 | 1 | -1/+2 | |
| | | | | Task-number: QTCREATORBUG-1818 | |||||
* | C++ indenter: Refactor to be independent of BaseTextDocumentLayout. | Christian Kamm | 2010-07-08 | 1 | -68/+88 | |
| | | | | Done-with: Thomas Hartmann | |||||
* | C++ indenter: Don't add continuation indent after function return type. | Christian Kamm | 2010-07-08 | 1 | -1/+13 | |
| | | | | Task-number: QTCREATORBUG-1816 | |||||
* | C++ indenter: Enable class, struct, enum, namespace, using in functions. | Christian Kamm | 2010-07-08 | 1 | -21/+20 | |
| | | | | | Fixes incorrect indentation we got previously when they were used in a statement context. | |||||
* | C++ indenter: Add more functions to manage the indenter state. | Christian Kamm | 2010-07-06 | 1 | -1/+40 | |
| | ||||||
* | C++ indenter: Add special case rule for indenting enums. | Christian Kamm | 2010-07-06 | 1 | -3/+8 | |
| | | | | | | | So you now get enum A { a = 2, b = 3, }; | |||||
* | C++ indenter: Require explicit state update requests. | Christian Kamm | 2010-07-06 | 1 | -3/+2 | |
| | | | | | This will allow much faster indenting of selected areas as the state doesn't have to be checked again for every line. | |||||
* | C++ indenter: Fix 'else' indentation in GNU style. | Christian Kamm | 2010-07-06 | 1 | -0/+2 | |
| | ||||||
* | C++ indenter: Store tab size and use it to calculate the column position | Christian Kamm | 2010-07-05 | 1 | -1/+25 | |
| | ||||||
* | C++ indenter: Make building custom styles easier, fix style issues. | Christian Kamm | 2010-07-05 | 1 | -54/+118 | |
| | | | | | Keep more information by using enter() instead of turnInto() when moving from a *_start to *_open. | |||||
* | C++ indenter: Add support for other brace styles. | Christian Kamm | 2010-07-05 | 1 | -0/+14 | |
| | ||||||
* | C++: Introduce the new CodeFormatter. | Christian Kamm | 2010-07-02 | 1 | -0/+1067 | |
Done-with: Erik Verbruggen |