2018-08-31 14:49:18 -07:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "quantum.h"
|
|
|
|
|
|
|
|
enum userspace_layers {
|
|
|
|
_BL = 0, // Base Layer
|
|
|
|
_FL, // Function Layer
|
2020-02-03 13:37:01 -08:00
|
|
|
_AL, // Arrow Layer
|
|
|
|
_CL // Control Layer
|
2018-08-31 14:49:18 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
// Enum of custom keycodes defined in process_record_user
|
|
|
|
enum keycodes {
|
2018-10-26 17:14:50 -07:00
|
|
|
KC_FNX, // Hold for FN layer, tap to toggle ARROWS layer.
|
2020-02-03 13:37:01 -08:00
|
|
|
KC_MAC, // Text macro.
|
2018-08-31 14:49:18 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
// Custom #defined keycodes
|
2018-10-26 17:14:50 -07:00
|
|
|
#define KC_CTCP CTL_T(KC_CAPS)
|