mirror of
https://github.com/CrispyPin/zmk-config.git
synced 2024-11-10 04:00:26 +01:00
152 lines
4.7 KiB
C
152 lines
4.7 KiB
C
/*
|
|
* helper.h
|
|
*
|
|
* Convenience macros simplifying ZMK's keymap configuration.
|
|
* See https://github.com/urob/zmk-nodefree-config for documentation.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#define ZMK_HELPER_STRINGIFY(x) #x
|
|
|
|
/* ZMK_BEHAVIOR */
|
|
|
|
#define ZMK_BEHAVIOR_CORE_caps_word compatible = "zmk,behavior-caps-word"; #binding-cells = <0>
|
|
#define ZMK_BEHAVIOR_CORE_hold_tap compatible = "zmk,behavior-hold-tap"; #binding-cells = <2>
|
|
#define ZMK_BEHAVIOR_CORE_key_repeat compatible = "zmk,behavior-key-repeat"; #binding-cells = <0>
|
|
#define ZMK_BEHAVIOR_CORE_macro compatible = "zmk,behavior-macro"; #binding-cells = <0>
|
|
#define ZMK_BEHAVIOR_CORE_mod_morph compatible = "zmk,behavior-mod-morph"; #binding-cells = <0>
|
|
#define ZMK_BEHAVIOR_CORE_sticky_key compatible = "zmk,behavior-sticky-key"; #binding-cells = <1>
|
|
#define ZMK_BEHAVIOR_CORE_tap_dance compatible = "zmk,behavior-tap-dance"; #binding-cells = <0>
|
|
|
|
#define ZMK_BEHAVIOR(name, type, ...) \
|
|
/ { \
|
|
behaviors { \
|
|
name: name { \
|
|
label = ZMK_HELPER_STRINGIFY(ZB_ ## name); \
|
|
ZMK_BEHAVIOR_CORE_ ## type; \
|
|
__VA_ARGS__ \
|
|
}; \
|
|
}; \
|
|
};
|
|
|
|
/* ZMK_LAYER */
|
|
|
|
#define ZMK_LAYER(name, layout) \
|
|
/ { \
|
|
keymap { \
|
|
compatible = "zmk,keymap"; \
|
|
name { \
|
|
bindings = <layout>; \
|
|
}; \
|
|
}; \
|
|
};
|
|
|
|
/* ZMK_COMBOS */
|
|
|
|
#define ALL 0xff
|
|
#if !defined COMBO_TERM
|
|
#define COMBO_TERM 30
|
|
#endif
|
|
|
|
#define ZMK_COMBO(name, combo_bindings, keypos, combo_layers) \
|
|
/ { \
|
|
combos { \
|
|
compatible = "zmk,combos"; \
|
|
combo_ ## name { \
|
|
timeout-ms = <COMBO_TERM>; \
|
|
bindings = <combo_bindings>; \
|
|
key-positions = <keypos>; \
|
|
layers = <combo_layers>; \
|
|
}; \
|
|
}; \
|
|
};
|
|
|
|
#if !defined COMBO_HOOK
|
|
#define COMBO_HOOK
|
|
#endif
|
|
#define ZMK_COMBO_ADV(name, combo_bindings, keypos, combo_layers, combo_timeout) \
|
|
/ { \
|
|
combos { \
|
|
compatible = "zmk,combos"; \
|
|
combo_ ## name { \
|
|
timeout-ms = <combo_timeout>; \
|
|
bindings = <combo_bindings>; \
|
|
key-positions = <keypos>; \
|
|
layers = <combo_layers>; \
|
|
COMBO_HOOK \
|
|
}; \
|
|
}; \
|
|
};
|
|
|
|
/* ZMK_CONDITIONAL_LAYER */
|
|
|
|
#define ZMK_CONDITIONAL_LAYER(if_layers, then_layer) \
|
|
/ { \
|
|
conditional_layers { \
|
|
compatible = "zmk,conditional-layers"; \
|
|
tri_layer { \
|
|
if-layers = <if_layers>; \
|
|
then-layer = <then_layer>; \
|
|
}; \
|
|
}; \
|
|
};
|
|
|
|
/* ZMK_UNICODE */
|
|
|
|
#if !defined OS_UNICODE_LEAD
|
|
#if HOST_OS == 2
|
|
#define OS_UNICODE_LEAD ¯o_press &kp LALT // macOS/Windows-Alt-Codes
|
|
#elif HOST_OS == 1
|
|
#define OS_UNICODE_LEAD ¯o_tap &kp LS(LC(U)) // Linux
|
|
#else
|
|
#define OS_UNICODE_LEAD ¯o_tap &kp RALT &kp U // Windows + WinCompose (default)
|
|
#endif
|
|
#endif
|
|
#if !defined OS_UNICODE_TRAIL
|
|
#if HOST_OS == 2
|
|
#define OS_UNICODE_TRAIL ¯o_release &kp LALT // macOS/Windows-Alt-Codes
|
|
#elif HOST_OS == 1
|
|
#define OS_UNICODE_TRAIL ¯o_tap &kp SPACE // Linux
|
|
#else
|
|
#define OS_UNICODE_TRAIL ¯o_tap &kp RET // Windows + WinCompose (default)
|
|
#endif
|
|
#endif
|
|
|
|
#define UC_MACRO(name, unicode_bindings) \
|
|
/ { \
|
|
macros { \
|
|
name: name { \
|
|
compatible = "zmk,behavior-macro"; \
|
|
label = ZMK_HELPER_STRINGIFY(UC_MACRO_ ## name); \
|
|
wait-ms = <0>; \
|
|
tap-ms = <0>; \
|
|
#binding-cells = <0>; \
|
|
bindings = <OS_UNICODE_LEAD>, <¯o_tap unicode_bindings>, <OS_UNICODE_TRAIL>; \
|
|
}; \
|
|
}; \
|
|
};
|
|
|
|
#define UC_MODMORPH(name, uc_binding, shifted_uc_binding) \
|
|
/ { \
|
|
behaviors { \
|
|
name: name { \
|
|
compatible = "zmk,behavior-mod-morph"; \
|
|
label = ZMK_HELPER_STRINGIFY(UC_MORPH_ ## name); \
|
|
#binding-cells = <0>; \
|
|
bindings = <uc_binding>, <shifted_uc_binding>; \
|
|
mods = <(MOD_LSFT|MOD_RSFT)>; \
|
|
masked-mods = <(MOD_LSFT|MOD_RSFT)>; \
|
|
}; \
|
|
}; \
|
|
};
|
|
|
|
#define ZMK_UNICODE_SINGLE(name, L0, L1, L2, L3) \
|
|
UC_MACRO(name ## _lower, &kp L0 &kp L1 &kp L2 &kp L3) \
|
|
UC_MODMORPH(name, &name ## _lower, &none)
|
|
|
|
#define ZMK_UNICODE_PAIR(name, L0, L1, L2, L3, U0, U1, U2, U3) \
|
|
UC_MACRO(name ## _lower, &kp L0 &kp L1 &kp L2 &kp L3) \
|
|
UC_MACRO(name ## _upper, &kp U0 &kp U1 &kp U2 &kp U3) \
|
|
UC_MODMORPH(name, &name ## _lower, &name ## _upper)
|
|
|