diff --git a/static/js/ace2_inner.js b/static/js/ace2_inner.js index f45c61b2..9c647b6d 100644 --- a/static/js/ace2_inner.js +++ b/static/js/ace2_inner.js @@ -3580,15 +3580,9 @@ function OUTER(gscope) function doTabKey(shiftDown) { - if (shiftDown === true){ - doDeleteKey(); - } - else + if (!doIndentOutdent(shiftDown)) { - if (!doIndentOutdent(shiftDown)) - { - performDocumentReplaceSelection(THE_TAB); - } + performDocumentReplaceSelection(THE_TAB); } }