Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DELETE: modifiers missing in keymap - why?
Browse files Browse the repository at this point in the history
frobiac committed Feb 15, 2013
1 parent 35d9f70 commit 518542e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/keymap.h
Original file line number Diff line number Diff line change
@@ -461,6 +461,15 @@ PROGMEM static const InterimsKeycode KeyMatrix[LAYOUTS][LAYERS][ROWS][COLS] = {
}; // end of layouts


/// @see Modifier in hid_usage.h
#define L_CTL (1<<0)
#define L_SHF (1<<1)
#define L_ALT (1<<2)
#define L_GUI (1<<3)
#define R_CTL (1<<4)
#define R_GUI (1<<7)


PROGMEM static const local_keycode localizedMacDifferences[] = {
// Index DE GB US
{_ik_UNDO , {{HID_Y, R_GUI },{HID_Z, L_GUI },{HID_Z, L_GUI }} },

0 comments on commit 518542e

Please sign in to comment.