dispatchTab method

bool dispatchTab(
  1. FluentDocument document, {
  2. required bool isShiftPressed,
})

Implementation

bool dispatchTab(FluentDocument document, {required bool isShiftPressed}) {
  for (final plugin in plugins) {
    if (plugin.onTab(document, isShiftPressed: isShiftPressed)) return true;
  }
  return false;
}