-
Notifications
You must be signed in to change notification settings - Fork 0
/
keys.h
41 lines (35 loc) · 1.26 KB
/
keys.h
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
30
31
32
33
34
35
36
37
38
39
40
41
#pragma once
#include <Kaleidoscope.h>
#define Key_Tilde LSHIFT(Key_Backtick)
#define Key_Exclamation LSHIFT(Key_1)
#define Key_At LSHIFT(Key_2)
#define Key_Hash LSHIFT(Key_3)
#define Key_Dollar LSHIFT(Key_4)
#define Key_Percent LSHIFT(Key_5)
#define Key_Caret LSHIFT(Key_6)
#define Key_And LSHIFT(Key_7)
#define Key_Star LSHIFT(Key_8)
#define Key_RightParen LSHIFT(Key_0)
#define Key_LeftParen LSHIFT(Key_9)
#define Key_Underscore LSHIFT(Key_Minus)
#define Key_Plus LSHIFT(Key_Equals)
#define Key_LeftCurlyBrace LSHIFT(Key_LeftBracket)
#define Key_RightCurlyBrace LSHIFT(Key_RightBracket)
#define Key_DubQuote LSHIFT(Key_Quote)
#define Key_BrDecr Consumer_DisplayBrightnessDecrement
#define Key_BrIncr Consumer_DisplayBrightnessIncrement
#define Key_VolDecr Consumer_VolumeDecrement
#define Key_VolIncr Consumer_VolumeIncrement
#define Key_Play Consumer_Play
#define Key_Next Consumer_ScanNextTrack
#define Key_Prev Consumer_ScanPreviousTrack
#define Key_SwitchDisplay LGUI(LSHIFT(Key_RightArrow))
#define ___ Key_Transparent
#define Key_RCtrl Key_RightControl
#define Key_RShift Key_RightShift
#define Key_RAlt Key_RightAlt
#define Key_RGui Key_RightGui
#define Key_LCtrl Key_LeftControl
#define Key_LShift Key_LeftShift
#define Key_LAlt Key_LeftAlt
#define Key_LGui Key_LeftGui