ctrlI method
Toggles Ctrl+I mapping (tab) when v is true.
Implementation
LegacyKeyEncoding ctrlI(bool v) =>
LegacyKeyEncoding(v ? (bits | _flagCtrlI) : (bits & ~_flagCtrlI));
Toggles Ctrl+I mapping (tab) when v is true.
LegacyKeyEncoding ctrlI(bool v) =>
LegacyKeyEncoding(v ? (bits | _flagCtrlI) : (bits & ~_flagCtrlI));