diff --git a/src/scintillaeditor.cpp b/src/scintillaeditor.cpp
index f17bd33d6..1fc1877bb 100755
--- a/src/scintillaeditor.cpp
+++ b/src/scintillaeditor.cpp
@@ -158,6 +158,11 @@ ScintillaEditor::ScintillaEditor(QWidget *parent) : EditorInterface(parent)
 	// Ctrl-Ins displays templates
 	c = qsci->standardCommands()->boundTo(Qt::Key_Insert | Qt::CTRL);
 	c->setAlternateKey(0);
+	// Ctrl-[ and Ctrl-] should zoom
+	c = qsci->standardCommands()->boundTo(Qt::Key_BracketLeft | Qt::CTRL);
+	if(c) c->setKey(0);
+	c = qsci->standardCommands()->boundTo(Qt::Key_BracketRight | Qt::CTRL);
+	if(c) c->setKey(0);
 
 #ifdef Q_OS_MAC
 	const unsigned long modifier = Qt::META;
