handleShiftTab method

bool handleShiftTab()

Implementation

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