Skip to content

Commit

Permalink
updated macroses
Browse files Browse the repository at this point in the history
  • Loading branch information
keymap-editor[bot] committed Oct 23, 2024
1 parent 60ea02c commit 8d6cab6
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions config/jorne.keymap
Original file line number Diff line number Diff line change
Expand Up @@ -43,21 +43,33 @@
Wrap_console_log: Wrap_console_log {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&kp LEFT_CONTROL &kp LEFT_ALT &kp W &kp W>;
bindings =
<&macro_press>,
<&kp LEFT_CONTROL &kp LEFT_ALT &kp W &kp W>,
<&macro_release>;

label = "WRAP_CONSOLE_LOG";
};

Wrap_console_down: Wrap_console_down {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&kp LEFT_CONTROL &kp LEFT_ALT &kp W &kp DOWN>;
bindings =
<&macro_press>,
<&kp LEFT_CONTROL &kp LEFT_ALT &kp W &kp DOWN>,
<&macro_release>;

label = "WRAP_CONSOLE_DOWN";
};

Wrap_console_up: Wrap_console_up {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&kp LEFT_CONTROL &kp LEFT_ALT &kp W &kp UP>;
bindings =
<&macro_press>,
<&kp LEFT_CONTROL &kp LEFT_ALT &kp W &kp UP>,
<&macro_release>;

label = "WRAP_CONSOLE_UP";
};
};
Expand Down

0 comments on commit 8d6cab6

Please sign in to comment.