summaryrefslogtreecommitdiff
path: root/src/input/config.zig
blob: fd839a20e0a87796d5c63beb37cbce79707752ff (plain)
1
2
3
4
5
6
7
8
/// Determines the macOS option key behavior. See the config
/// `macos-option-as-alt` for a lot more details.
pub const OptionAsAlt = enum(c_int) {
    false,
    true,
    left,
    right,
};