I would like emacs to indent my c/c++ code like this:
auto LoopMatcher = forStmt(hasLoopInit(declStmt(hasSingleDecl(varDecl(
hasInitializer(integerLiteral(equals(0)))))))).bind("forLoop");
(code taken from clang's AST matcher tutorial).
In other words, I want emacs to indent by the default offset after one or more open parentheses.