aboutsummaryrefslogtreecommitdiff
path: root/users/replicaJunction/rj_keycodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'users/replicaJunction/rj_keycodes.h')
-rw-r--r--users/replicaJunction/rj_keycodes.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/users/replicaJunction/rj_keycodes.h b/users/replicaJunction/rj_keycodes.h
new file mode 100644
index 000000000..fde2698df
--- /dev/null
+++ b/users/replicaJunction/rj_keycodes.h
@@ -0,0 +1,63 @@
1/* Copyright 2021 Joshua T.
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#pragma once
18#include QMK_KEYBOARD_H
19
20// Custom keycodes and macros
21enum userspace_custom_keycodes {
22 QK_MAKE = SAFE_RANGE, // QMK make command
23 QK_FLSH, // QMK flash command
24 QK_VERS, // QMK version
25
26 // Programming macros
27 PRG_EQ, // ==
28 PRG_NE, // !=
29 PRG_GEQ, // >=
30 PRG_LEQ, // <=
31 PRG_ARR, // =>
32 PS_ITEM, // $_ (PowerShell - $PSItem variable)
33 FS_PIPE, // |> (F# pipe operator)
34 FS_ARR, // -> (F# lambda / pattern matching)
35 SHEBANG, // #!
36
37 // USER_CAPS_WORD_ENABLE
38 CAPWORD,
39
40#ifdef USER_NUM_WORD_ENABLE
41 NUMWORD,
42#endif
43
44 // USER_ENABLE_CUSTOM_SHIFT_CODES
45 // Custom characters that send different symbols than usual when shifted
46 KCC_COM, // , or !
47 KCC_DOT, // . or @
48 KCC_QUO, // ' or ~
49
50 // USER_MOUSE_JIGGLE_ENABLE
51 MS_JIGL,
52
53 // USER_ENABLE_SUPER_ALT_TAB
54 SALTTAB,
55
56 // USER_ENABLE_SECRETS
57 K_SECR1,
58 K_SECR2,
59 K_SECR3,
60 K_SECR4,
61
62 DYNAMIC_MACRO_RANGE
63};