Added a shift-list property to caps word to allow adding more keys to be shifted aside from alpha keys. Added a &prog_word behavior, which is the same as &caps_word, except it adds MINUS to shift-list (this matches QMK's caps word behavior). Added a no-default-keys property to caps_word, which removes the implicit alphanumeric keys from continue-list and shift-list so you can fully customize the lists. Also adjusted the default continue keys to include numpad numbers, since those are numbers too.
25 lines
593 B
Text
25 lines
593 B
Text
/*
|
|
* Copyright (c) 2021 The ZMK Contributors
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#include <dt-bindings/zmk/keys.h>
|
|
|
|
/ {
|
|
behaviors {
|
|
/omit-if-no-ref/ caps_word: caps_word {
|
|
compatible = "zmk,behavior-caps-word";
|
|
#binding-cells = <0>;
|
|
continue-list = <UNDERSCORE BACKSPACE DELETE>;
|
|
};
|
|
|
|
/omit-if-no-ref/ prog_word: prog_word {
|
|
compatible = "zmk,behavior-caps-word";
|
|
#binding-cells = <0>;
|
|
continue-list = <UNDERSCORE BACKSPACE DELETE>;
|
|
shift-list = <MINUS>;
|
|
};
|
|
};
|
|
};
|
|
|