aboutsummaryrefslogtreecommitdiff
path: root/layouts/community/60_ansi/xyverz/keymap.c
diff options
context:
space:
mode:
authorXyverz <xyverz@gmail.com>2019-10-28 16:09:01 -0700
committernoroadsleft <18669334+noroadsleft@users.noreply.github.com>2019-10-28 16:09:01 -0700
commitf19c8b2d5daedcbf833fe8320f290cad9d9f0b83 (patch)
tree3b0f08d1893b1525f234fd2d0f554f1dbf412316 /layouts/community/60_ansi/xyverz/keymap.c
parent8ab7f1f39e715c824cc0e1391aa9a469b2a18438 (diff)
downloadqmk_firmware-f19c8b2d5daedcbf833fe8320f290cad9d9f0b83.tar.gz
qmk_firmware-f19c8b2d5daedcbf833fe8320f290cad9d9f0b83.zip
[Keymap] Updating keymaps (#7170)
* Added WOW layer * Initial commit for this branch. Still a work in progress. * Added Rorschach keyboard layout. * Simplified keymap Removed the media layer to help simplify things. Also corrected some keymap mistakes in the Qwerty and Colemak layers. * Added ErgoTravel keymap. * reverted to previous layout. * Added Sol keyboard layout. * Minor changes to keymap. * more changes * Added sol graphic by Kagerufu and Cardiactuna * Added colemak layer because I can. * more changes to sol layout * Streamlined Sol layout * minor tweaks to sol layout * further revisions to sol keymap. * Removing deprecated #include statements from my keymaps * Standardizing keymap `include` lines. * Minor change to keymap. Swapped ESC with GRV on all alpha layers. * Tweaks to Atreus62 Keymap Added a layer for FPS RPG Loot Shooters. * Fixed readme.md for Atreus keymap. Replaced "Keymap" with "Layer" in illustrations for continuity's sake * More readme.md clean-up More clarification in the Atreus readme file. * Next verse, same as the first. * Changes to Sol layout Bringing my Sol layout more in line with my other Orthos. * Fixed keymap GUI. Replaced left-hand "RGUI" with "LGUI" on all layers as it should be. * Added ALPS64 keymap * Formatting corrections * fixes to config.h and keymap.c * Fixed errors This commit fixes a pathing issue in keyboards/orthodox/keymaps/xyverz/config.h and removes an stupid comma at the end of each LAYOUT stanza in keyboards/rgbkb/sol/keymaps/xyverz/keymap.c left there by me. * Fixed orthodox keymap config.h file I hope this one fixes the problem. *sigh* * Making suggested changes for PR#6192 Thanks to noroadsleft, fauxpark, and drashna. Still have more work to do, but at least these suggestions have been applied. * Fixing build errors Travis has shown me the error of my ways... * More fixes and corrections Those pesky semicolons... * More Fixes. * Removing unneeded code snippet. * fixed omitted semicolons * Code updates to my keymaps Updating the code for my Iris, Atreus62, and Atreus keymaps. * Fixed Atreus62 Keymap I forgot to add in the aliases for LOWER, RAISE, and ADJUST. * Added userspace Also made changes to Atreus62 Keymap to turn the red LEDs off on the ProMicro * Fixing code that disables LEDs on ProMicros Also tidied up my ErgoTravel keymap. * Moving userspace to new branch Moving my userspace to a new branch for the sake of keeping things clean on the master branch. * Added F13-F15 to Atreus62 Layout. * Update readme.md. * Updated Phantom keymap to current keymap standards * Phantom keymap updates Further updates - tidying and removing cruft. Thank you zvecr on Discord for the help! * Standards Updates Bringing my Kinesis keymap up to current code standards * Adding a readme * Bring GH60 code to standard * Utilizing layouts for 60_ansi and tkl_ansi Moving my GH60 and Phantom keymaps into layouts/community/ * Alps64 layout removal Removing my Alps64 keymap now that I've setup my 60_ansi layout. * Moved Clueboard layout to community/66_ansi. * Additions to 66_ansi config.h * Bringing keymaps up to standard. * More updates to keymaps. * Syntax updates * Revert "Syntax updates" This reverts commit a892b2d9fcc0d4ba8fc22d676d5414120cc2c183. * Moved WIP keymaps Moved my WIP keymaps to my wip_keymaps branch to keep my master clean * Updates requested by noroadsleft * more changes per noroadsleft More fixes as requested by noroadsleft. Further tidy-up and standardization of my keymap code.
Diffstat (limited to 'layouts/community/60_ansi/xyverz/keymap.c')
-rw-r--r--layouts/community/60_ansi/xyverz/keymap.c125
1 files changed, 125 insertions, 0 deletions
diff --git a/layouts/community/60_ansi/xyverz/keymap.c b/layouts/community/60_ansi/xyverz/keymap.c
new file mode 100644
index 000000000..61176ef2b
--- /dev/null
+++ b/layouts/community/60_ansi/xyverz/keymap.c
@@ -0,0 +1,125 @@
1#include QMK_KEYBOARD_H
2
3enum layer_names {
4 _QW,
5 _DV,
6 _CM,
7 _FL,
8};
9
10enum planck_keycodes { DVORAK = SAFE_RANGE, QWERTY, COLEMAK };
11
12// clang-format off
13const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
14
15 /*
16 * _QW: Qwerty Layer
17 * ,-----------------------------------------------------------.
18 * |ESC | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =| Backsp|
19 * |-----------------------------------------------------------|
20 * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \|
21 * |-----------------------------------------------------------|
22 * |Fn | A| S| D| F| G| H| J| K| L| ;| '| Return|
23 * |-----------------------------------------------------------|
24 * |Shift | Z| X| C| V| B| N| M| ,| .| /| Shift|
25 * |-----------------------------------------------------------|
26 * |Ctrl|Alt |Gui | Space |Gui |Alt |Ctrl| Fn|
27 * `-----------------------------------------------------------'
28 */
29 /* Layer 0: Qwerty */
30 [_QW] = LAYOUT_60_ansi(
31 KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC,
32 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS,
33 MO(_FL), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT ,
34 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
35 KC_LCTL, KC_LALT, KC_LGUI, KC_SPC, KC_RGUI, KC_RALT, KC_RCTL, MO(_FL)
36 ),
37
38 /*
39 * _DV: Dvorak Layer
40 * ,-----------------------------------------------------------.
41 * |ESC | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| [| ]| Backsp|
42 * |-----------------------------------------------------------|
43 * |Tab | '| ,| .| P| Y| F| G| C| R| L| /| =| \|
44 * |-----------------------------------------------------------|
45 * |Fn | A| O| E| U| I| D| H| T| N| S| -| Return|
46 * |-----------------------------------------------------------|
47 * |Shift | ;| Q| J| K| X| B| M| W| V| Z| Shift|
48 * |-----------------------------------------------------------|
49 * |Ctrl|Alt |Gui | Space |Gui |Alt |Ctrl| Fn|
50 * `-----------------------------------------------------------'
51 */
52 /* Layer 1: Dvorak */
53 [_DV] = LAYOUT_60_ansi(
54 KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_LBRC, KC_RBRC, KC_BSPC,
55 KC_TAB, KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y, KC_F, KC_G, KC_C, KC_R, KC_L, KC_SLSH, KC_EQL, KC_BSLS,
56 MO(_FL), KC_A, KC_O, KC_E, KC_U, KC_I, KC_D, KC_H, KC_T, KC_N, KC_S, KC_MINS, KC_ENT,
57 KC_LSFT, KC_SCLN, KC_Q, KC_J, KC_K, KC_X, KC_B, KC_M, KC_W, KC_V, KC_Z, KC_RSFT,
58 KC_LCTL, KC_LALT, KC_LGUI, KC_SPC, KC_RGUI, KC_RALT, KC_RCTL, MO(_FL)
59 ),
60
61 /*
62 * _CM: Colemak Layer
63 * ,-----------------------------------------------------------.
64 * |ESC | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =| Backsp|
65 * |-----------------------------------------------------------|
66 * |Tab | Q| W| F| P| G| J| L| U| Y| ;| [| ]| \|
67 * |-----------------------------------------------------------|
68 * |Fn | A| R| S| T| D| H| N| E| I| O| '| Return|
69 * |-----------------------------------------------------------|
70 * |Shift | Z| X| C| V| B| K| M| ,| .| /| Shift|
71 * |-----------------------------------------------------------|
72 * |Ctrl|Alt |Gui | Space |Gui |Alt |Ctrl| Fn|
73 * `-----------------------------------------------------------'
74 */
75 /* Layer 2: Colemak */
76 [_CM] = LAYOUT_60_ansi(
77 KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC,
78 KC_TAB, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_LBRC, KC_RBRC, KC_BSLS,
79 MO(_FL), KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, KC_QUOT, KC_ENT,
80 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
81 KC_LCTL, KC_LALT, KC_LGUI, KC_SPC, KC_RGUI, KC_RALT, KC_RCTL, MO(_FL)
82 ),
83
84 /*
85 * _FL: Function Layer
86 * ,-----------------------------------------------------------.
87 * | |F1| F2| F3| F4| F5| F6| F7| F8| F9|F10|F11|F12| Del|
88 * |-----------------------------------------------------------|
89 * | | | | | | | |PgU| Up|PgD|PSc|SLk|Pau| |
90 * |-----------------------------------------------------------|
91 * | | |MPr|MPl|MNx| |Hom| Lt| Dn| Rt| | | |
92 * |-----------------------------------------------------------|
93 * |CAPS | |Mut|VlD|VlU| |End| | | | | |
94 * |-----------------------------------------------------------|
95 * |_QW |_DV |_CM | | | | | |
96 * `-----------------------------------------------------------'
97 */
98 /* Layer 3: Functions */
99 [_FL] = LAYOUT_60_ansi(
100 _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL ,
101 _______, _______, _______, _______, _______, _______, _______, KC_PGUP, KC_UP, KC_PGDN, KC_PSCR, KC_SLCK, KC_PAUS, _______,
102 _______, _______, KC_MPRV, KC_MPLY, KC_MNXT, _______, KC_HOME, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______,
103 KC_CAPS, _______, KC_MUTE, KC_VOLD, KC_VOLU, _______, KC_END, _______, _______, _______, _______, _______,
104 QWERTY, DVORAK, COLEMAK, _______, _______, _______, _______, _______
105 ),
106
107};
108// clang-format on
109
110bool process_record_user(uint16_t keycode, keyrecord_t *record) {
111 if (record->event.pressed) {
112 switch (keycode) {
113 case DVORAK:
114 set_single_persistent_default_layer(_DV);
115 return false;
116 case QWERTY:
117 set_single_persistent_default_layer(_QW);
118 return false;
119 case COLEMAK:
120 set_single_persistent_default_layer(_CM);
121 return false;
122 }
123 }
124 return true;
125} \ No newline at end of file