1
0
Fork 0

[Keyboard] Fix up SplitKB keyboards (#13511)

This commit is contained in:
Drashna Jael're 2021-07-25 18:18:39 -07:00 committed by GitHub
parent d908970522
commit 4bb595f94b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
110 changed files with 1010 additions and 312 deletions

View file

@ -0,0 +1,16 @@
#pragma once
#include "quantum.h"
enum layers { _QWERTY = 0, _LOWER, _RAISE, _ADJUST };
enum custom_keycodes {
ENC_MODE_L = SAFE_RANGE,
ENC_MODE_R,
TMB_MODE,
};
#define ESC_RAISE LT(_RAISE, KC_ESC)
#define BSLS_RAISE LT(_RAISE, KC_BSLS)
#define SFT_QUOT MT(MOD_RSFT, KC_QUOT)
#define CTL_MINS MT(MOD_RCTL, KC_MINS)