engineConfig property

EngineConfig get engineConfig

Palette + scrollback handed to the Rust engine. palette is length 18: 0..15 ANSI, 16 fg, 17 bg.

Implementation

EngineConfig get engineConfig => EngineConfig(
      palette: Uint32List.fromList(
          [...colors.ansi, colors.foreground, colors.background]),
      scrollback: scrolling.history,
      osc52: osc52ToWire(terminal.osc52),
      semanticEscapeChars: selection.semanticEscapeChars,
      defaultCursorShape: cursor.defaultShape,
      defaultCursorBlinking: cursor.defaultBlinking,
    );