blob: 96bf7dc0eb09a1f6ee1ee808e5407bc6d7c0d74e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#pragma once
#include "quantum.h"
#include "defines.h"
enum custom_keycodes {
// Layer Keycodes
LOWER = SAFE_RANGE,
RAISE,
MC_first,
// Macro Keycodes
CUSTOM_MACROS(CUSTOM_ENUM, DROP, COMMA_DELIM),
MC_last
};
enum custom_layers {
_QW = 0, // Qwerty
_RS, // Raise
_LW, // Lower
_MS, // Mouse
_GT, // Git
_CN, // Convenience
_GW, // Guild Wars 2
_CS // Counter-Strike: Global Offensive
};
|