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