Fix crash when hitting shift+return in Dev Tools Console, fix #14468 (#14478)

This commit is contained in:
Tim Roes 2017-10-23 11:34:50 +02:00 committed by GitHub
parent 73058c67b1
commit f3e2750136

View file

@ -1103,7 +1103,7 @@ var Autocomplete = function() {
"Esc": function(editor) { editor.completer.detach(); },
"Space": function(editor) { editor.completer.detach(); editor.insert(" ");},
"Return": function(editor) { editor.completer.insertMatch(); },
"Shift-Return": function(editor) { editor.completer.insertMatch(true); },
"Shift-Return": function(editor) { editor.completer.insertMatch(); },
"Tab": function(editor) { editor.completer.insertMatch(); },
"PageUp": function(editor) { editor.completer.popup.gotoPageUp(); },