I’ve been using SpaceCadet:
- to give me brackets on modifiers
- solve the issue of having one few too thumb keys for modifiers
However I’ve been having some troubles with this setup of Space & Shift. Sometimes the Shift triggers and capitalizes the next word instead of emitting a Space.
I don’t think I am letting go of the Shift too late, I think there’s some timeout for modifiers still taking effect even when let go before pushing the next key. Though perhaps I am.
Has anyone tried Space and a modifier with SpaceCadet before? Any tips?
static kaleidoscope::plugin::SpaceCadet::KeyBinding spacecadetmap[] = {
{Key_LeftControl, Key_LeftBracket, 250},
{Key_LeftShift, Key_Space, 250},
{Key_LeftGui, Key_LeftParen, 250},
{Key_LeftAlt, Key_LeftCurlyBracket, 250},
{Key_RightAlt, Key_RightCurlyBracket, 250},
{Key_RightGui, Key_RightParen, 250},
{Key_RightShift, Key_Backspace, 250},
{Key_RightControl, Key_RightBracket, 250},
SPACECADET_MAP_END
};
SpaceCadet.map = spacecadetmap;