You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
381 B
19 lines
381 B
7 years ago
|
#ifndef USERSPACE
|
||
|
#define USERSPACE
|
||
|
|
||
|
#include "quantum.h"
|
||
|
|
||
|
enum custom_keycodes { CK_SAFE = SAFE_RANGE, RGUP, RGDWN, NEWPLACEHOLDER };
|
||
|
|
||
|
#define _______ KC_TRNS
|
||
|
#define KC_RGUP RGUP
|
||
|
#define KC_RGDWN RGDWN
|
||
|
|
||
|
#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
|
||
|
|
||
|
#endif
|