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

This commit is contained in:
Tim Roes 2017-10-24 16:47:10 +02:00 committed by GitHub
parent 9ca2bd38d5
commit ade1ee2147

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(); },