diff --git a/src/plugins/texteditor/basetexteditor.cpp b/src/plugins/texteditor/basetexteditor.cpp
index 98d427479224f7b634ec4ae7f5dd7b369d5a40b1..07dfa630e8a5dc9a78c146edc17f438616a0fa9d 100644
--- a/src/plugins/texteditor/basetexteditor.cpp
+++ b/src/plugins/texteditor/basetexteditor.cpp
@@ -3959,7 +3959,7 @@ void BaseTextEditor::rewrapParagraph()
                 }
 
                 result.append(currentWord);
-                result.append(QLatin1String(" "));
+                result.append(QLatin1Char(' '));
                 currentWord.clear();
             }
 
diff --git a/src/plugins/texteditor/texteditoractionhandler.cpp b/src/plugins/texteditor/texteditoractionhandler.cpp
index abf81e0b5767be2333e3df55841382dcfb986d43..a122704e4bc5f6ee5e58f3aff032e951a0d28fb9 100644
--- a/src/plugins/texteditor/texteditoractionhandler.cpp
+++ b/src/plugins/texteditor/texteditoractionhandler.cpp
@@ -143,7 +143,7 @@ void TextEditorActionHandler::createActions()
 
     m_rewrapParagraphAction = new QAction(tr("&Rewrap Paragraph"), this);
     command = am->registerAction(m_rewrapParagraphAction, TextEditor::Constants::REWRAP_PARAGRAPH, m_contextId);
-    //command->setDefaultKeySequence(QKeySequence(tr("Alt+Q"))); (No default key sequence for now.)
+    command->setDefaultKeySequence(QKeySequence(tr("Ctrl+E, R")));
     advancedMenu->addAction(command, Core::Constants::G_EDIT_FORMAT);
     connect(m_rewrapParagraphAction, SIGNAL(triggered(bool)), this, SLOT(rewrapParagraphAction()));