Skip to content

Commit

Permalink
feat(keymap): use q as tab if alt pressed
Browse files Browse the repository at this point in the history
  • Loading branch information
bobdoah committed Sep 21, 2023
1 parent ce370a6 commit 7a17a61
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion config/chipper.keymap
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,18 @@
};
};

/ {
behaviors {
qtab: q_tab {
compatible = "zmk,behavior-mod-morph";
label = "Q_TAB";
#binding-cells = <0>;
bindings = <&kp Q>, <&kp TAB>;
mods = <(MOD_LALT|MOD_RALT)>;
};
};
};



/ {
Expand All @@ -51,7 +63,7 @@
// ------------------------------------------------------------------

bindings = <
&kp Q &kp W &kp E &kp R &kp T &kp Y &kp U &kp I &kp O &kp P
&qtab &kp W &kp E &kp R &kp T &kp Y &kp U &kp I &kp O &kp P
&kp A &kp S &kp D &kp F &kp G &kp H &kp J &kp K &kp L &kp SQT
&mt LSHFT Z &kp X &kp C &kp V &kp B &kp N &kp M &kp COMMA &kp DOT &mt RSHFT FSLH
&mt LALT ESC &lt LOWER TAB &mt LCTRL RET &kp SPACE &lt RAISE BSPC &kp RGUI
Expand Down

0 comments on commit 7a17a61

Please sign in to comment.