handleShiftTab method
Implementation
bool handleShiftTab() {
if (document.registry.dispatchTab(document, isShiftPressed: true)) return true;
document.saveState(description: 'Outdent');
executeHandleTab(document, shift: true);
return true;
}
bool handleShiftTab() {
if (document.registry.dispatchTab(document, isShiftPressed: true)) return true;
document.saveState(description: 'Outdent');
executeHandleTab(document, shift: true);
return true;
}