logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

test_combos.c (516B)


  1. // Copyright 2023 Stefan Kerkmann (@KarlK90)
  2. // Copyright 2023 @filterpaper
  3. // Copyright 2023 Nick Brassel (@tzarc)
  4. // SPDX-License-Identifier: GPL-2.0-or-later
  5. #include "quantum.h"
  6. enum combos { modtest, osmshift };
  7. uint16_t const modtest_combo[] = {KC_Y, KC_U, COMBO_END};
  8. uint16_t const osmshift_combo[] = {KC_Z, KC_X, COMBO_END};
  9. // clang-format off
  10. combo_t key_combos[] = {
  11. [modtest] = COMBO(modtest_combo, RSFT_T(KC_SPACE)),
  12. [osmshift] = COMBO(osmshift_combo, OSM(MOD_LSFT))
  13. };
  14. // clang-format on