ctrlM method
Toggles Ctrl+M mapping (enter) when v is true.
Implementation
LegacyKeyEncoding ctrlM(bool v) =>
LegacyKeyEncoding(v ? (bits | _flagCtrlM) : (bits & ~_flagCtrlM));
Toggles Ctrl+M mapping (enter) when v is true.
LegacyKeyEncoding ctrlM(bool v) =>
LegacyKeyEncoding(v ? (bits | _flagCtrlM) : (bits & ~_flagCtrlM));