deleteWordForward function
Implementation
void deleteWordForward(SuperEditorContext context) {
bool didMove = false;
didMove = context.commonOps.moveCaretDownstream(
expand: true,
movementModifier: MovementModifier.word,
);
if (didMove) {
context.commonOps.deleteSelection(TextAffinity.downstream);
}
}