Merge pull request #227 from jtlebi/origin/shift-tab
handle shift+tab, trivial fix
This commit is contained in:
commit
40fcc83a05
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue