Squashed commit of the following: commit ba38925b3e471c5fe92763fe026b22c2c9a7b13d Author: urob <978080+urob@users.noreply.github.com> Date: Fri Aug 5 16:05:58 2022 -0400 Ignore-modifiers property for capsword
20 lines
373 B
Text
20 lines
373 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: behavior_caps_word {
|
|
compatible = "zmk,behavior-caps-word";
|
|
label = "CAPS_WORD";
|
|
#binding-cells = <0>;
|
|
continue-list = <UNDERSCORE BACKSPACE DELETE>;
|
|
ignore-modifiers;
|
|
};
|
|
};
|
|
};
|
|
|