summaryrefslogtreecommitdiff
path: root/keyboards
diff options
context:
space:
mode:
authorMax Whittingham <mwhittingham@redhat.com>2016-07-09 18:58:16 -0500
committerGitHub <noreply@github.com>2016-07-09 18:58:16 -0500
commitdf958a2dbc8b8ca19d57e7f4588656df40bb71f1 (patch)
tree1a411fdfa326ea67456d7915198291ff0e04d73d /keyboards
parent1ab527a4dbf6ad14c04b07dc6190470c8119b030 (diff)
Update keymap.c
Diffstat (limited to 'keyboards')
-rw-r--r--keyboards/gh60/keymaps/robotmaxtron/keymap.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/keyboards/gh60/keymaps/robotmaxtron/keymap.c b/keyboards/gh60/keymaps/robotmaxtron/keymap.c
index 54cb2747f9..263eec4e53 100644
--- a/keyboards/gh60/keymaps/robotmaxtron/keymap.c
+++ b/keyboards/gh60/keymaps/robotmaxtron/keymap.c
@@ -125,8 +125,6 @@ const uint16_t PROGMEM fn_actions[] = {
const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
{
// MACRODOWN only works in this function
- // This is some kind of macro code, haven't quite figured it out yet.
- // Todo: Figure out macro coding here
switch(id) {
case 0:
if (record->event.pressed) {
@@ -143,7 +141,6 @@ void matrix_scan_user(void) {
// Layer LED indicators
// ESC led on when in function layer, WASD cluster leds enabled when on arrow cluster
-// Todo: Caps lock led on when caps lock is enabled
uint32_t layer = layer_state;
if (layer & (1<<1)) {
gh60_wasd_leds_on();
@@ -204,6 +201,7 @@ void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) {
}
break;
static uint8_t shift_esc_shift_mask;
+ // Shift + ESC = ~
case SHIFT_ESC:
shift_esc_shift_mask = get_mods()&MODS_CTRL_MASK;
if (record->event.pressed) {