Today unintentionally I typed something when the cursor was on very long line and this formatted my line, by braking it several lines of limited length. This line looks something like:
Foo("This is very long line (left '%s' right '%s) and it will never never never end", pNode->left.c_str(), pNode->right.c_str());
before formatting and after line this:
Foo("This is very long line (left '%s' right '%s) and it "
"will never never never end", pNode->left.c_str(),
pNode->right.c_str());
What I pressed?