Fix mouse button 1 and add toggle

This commit is contained in:
Manna Harbour 2021-03-22 13:53:41 +11:00
parent abeff3c2f9
commit b191c52496
2 changed files with 9 additions and 6 deletions

View File

@ -38,7 +38,7 @@
#+NAME: mour #+NAME: mour
| | | | | | | | | | | |
| | MS_L | MS_D | MS_U | MS_R | | | MS_L | MS_D | MS_U | MS_R |
| | WH_L | WH_D | WH_U | WH_R | | U_MT | WH_L | WH_D | WH_U | WH_R |
| BTN1 | BTN3 | BTN2 | U_NP | U_NP | | BTN1 | BTN3 | BTN2 | U_NP | U_NP |
@ -573,7 +573,7 @@ standard keycode to implementation equivalent
| AT | AT | | AT | AT |
| BSLS | BSLH | | BSLS | BSLH |
| BSPC | BSPC | | BSPC | BSPC |
| BTN1 | KP_SLASH | | BTN1 | KP_N5 |
| BTN2 | U_NU | | BTN2 | U_NU |
| BTN3 | U_NU | | BTN3 | U_NU |
| CAPS | | | CAPS | |
@ -677,6 +677,9 @@ standard keycode to implementation equivalent
| C(KC_X) | LC(X) | | C(KC_X) | LC(X) |
| C(KC_Z) | LC(Z) | | C(KC_Z) | LC(Z) |
| DF(TAP) | &tog TAP | | DF(TAP) | &tog TAP |
| U_MT | LS(LNLCK) |

View File

@ -178,7 +178,7 @@ U_NP, U_NP, &lt MEDR ESC, &lt NAVR SPC, &lt MOUR TAB, &lt NSSL R
&trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans,
&trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans,
&trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans, &trans,
U_NP, U_NP, &trans, &trans, &trans, &kp KP_SLASH, U_NU, U_NU, U_NP, U_NP U_NP, U_NP, &trans, &trans, &trans, &kp KP_N5, U_NU, U_NU, U_NP, U_NP
) )
>; >;
}; };
@ -208,14 +208,14 @@ U_NP, U_NP, U_NA, U_NA, U_NA, &kp RET, &k
&bootloader, &tog TAP, U_NA, U_NA, U_NA, U_NU, U_NU, U_NU, U_NU, U_NU, &bootloader, &tog TAP, U_NA, U_NA, U_NA, U_NU, U_NU, U_NU, U_NU, U_NU,
&kp LGUI, &kp LALT, &kp LCTRL, &kp LSHFT, U_NA, &kp KP_N4, &kp KP_N2, &kp KP_N8, &kp KP_N6, U_NU, &kp LGUI, &kp LALT, &kp LCTRL, &kp LSHFT, U_NA, &kp KP_N4, &kp KP_N2, &kp KP_N8, &kp KP_N6, U_NU,
U_NA, &kp RALT, U_NA, U_NA, U_NA, U_NU, U_NU, U_NU, U_NU, U_NU, U_NA, &kp RALT, U_NA, U_NA, U_NA, U_NU, U_NU, U_NU, U_NU, U_NU,
U_NP, U_NP, U_NA, U_NA, U_NA, &kp KP_SLASH, U_NU, U_NU, U_NP, U_NP U_NP, U_NP, U_NA, U_NA, U_NA, &kp KP_N5, U_NU, U_NU, U_NP, U_NP
) )
#else #else
MIRYOKU_MAPPING( MIRYOKU_MAPPING(
&bootloader, &tog TAP, U_NA, U_NA, U_NA, U_NU, U_NU, U_NU, U_NU, U_NU, &bootloader, &tog TAP, U_NA, U_NA, U_NA, U_NU, U_NU, U_NU, U_NU, U_NU,
&kp LGUI, &kp LALT, &kp LCTRL, &kp LSHFT, U_NA, U_NU, &kp KP_N4, &kp KP_N2, &kp KP_N8, &kp KP_N6, &kp LGUI, &kp LALT, &kp LCTRL, &kp LSHFT, U_NA, U_NU, &kp KP_N4, &kp KP_N2, &kp KP_N8, &kp KP_N6,
U_NA, &kp RALT, U_NA, U_NA, U_NA, U_NU, U_NU, U_NU, U_NU, U_NU, U_NA, &kp RALT, U_NA, U_NA, U_NA, &kp LS(LNLCK), U_NU, U_NU, U_NU, U_NU,
U_NP, U_NP, U_NA, U_NA, U_NA, &kp KP_SLASH, U_NU, U_NU, U_NP, U_NP U_NP, U_NP, U_NA, U_NA, U_NA, &kp KP_N5, U_NU, U_NU, U_NP, U_NP
) )
#endif #endif
>; >;