Keymap: Keymap update (#4579)

* Add YREG keycode

* Add GM layer

* Set tapping term to 105

* update tapping term
This commit is contained in:
zer09
2018-12-10 00:28:46 +08:00
committed by Drashna Jaelre
parent 11eaccdbce
commit 614b3a0f7c
4 changed files with 57 additions and 8 deletions

View File

@ -3,16 +3,24 @@
#include "quantum.h"
enum custom_keycodes { CK_SAFE = SAFE_RANGE, RGUP, RGDWN, NEWPLACEHOLDER };
enum custom_keycodes {
CK_SAFE = SAFE_RANGE,
RGUP,
RGDWN,
YREG,
NEW_SAFE_RANGE
};
#define _______ KC_TRNS
#define KC_RGUP RGUP
#define KC_RGDWN RGDWN
#define KC_YREG YREG
#define _BL 0 // The base layer
#define _UL 1 // The up layer
#define _DL 2 // The down layer
#define _VL 3 // The shifted up layer
#define _AL 4 // The assorted layer
#define _GM 5
#endif