ctrlI method

LegacyKeyEncoding ctrlI(
  1. bool v
)

Toggles Ctrl+I mapping (tab) when v is true.

Implementation

LegacyKeyEncoding ctrlI(bool v) =>
    LegacyKeyEncoding(v ? (bits | _flagCtrlI) : (bits & ~_flagCtrlI));