qmk_firmware/users/mechmerlin/mechmerlin.h
MechMerlin b11a776cef Keymap: Update userspace (I want my Hacktoberfest shirt!) (#4252)
* use ctl_t

* spruce up readme and add a changelog

* add comment about using CTL_T

* add more description

* use RSFT_T so I can still have a right shift key even on the _AL layer

* add config.h for rgblight_sleep

* update readme to talk about rgblight_sleep

* update changelog with new changes
2018-10-26 17:14:50 -07:00

18 lines
343 B
C

#pragma once
#include "quantum.h"
enum userspace_layers {
_BL = 0, // Base Layer
_FL, // Function Layer
_AL // Arrow Layer
};
// Enum of custom keycodes defined in process_record_user
enum keycodes {
KC_FNX, // Hold for FN layer, tap to toggle ARROWS layer.
};
// Custom #defined keycodes
#define KC_CTCP CTL_T(KC_CAPS)