Merge pull request #227 from jtlebi/origin/shift-tab

handle shift+tab, trivial fix
pull/232/head
John McLear 2011-11-24 08:04:04 -08:00
commit 40fcc83a05
1 changed files with 2 additions and 8 deletions

View File

@ -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);
}
}