terminalGraphicsSuppressesCursorMovement function

bool terminalGraphicsSuppressesCursorMovement(
  1. String value
)

Whether value displays graphics while suppressing terminal cursor motion.

Implementation

bool terminalGraphicsSuppressesCursorMovement(String value) {
  for (final control in parseTerminalGraphicsControls(value)) {
    if (control.displaysWithoutCursorMovement) return true;
  }
  return false;
}