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