diff options
author | Morton Jonuschat <yabawock@gmail.com> | 2019-05-14 12:12:29 -0700 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-05-14 12:12:29 -0700 |
commit | 7c0f2ae6d1c1d3f168a5919287b6608b092b3dba (patch) | |
tree | 27df17fe5de7d7e7dab840828277c77233c05995 /layouts/community/ergodox/osx_neo2/layers.h | |
parent | 93a97ec6e5a8f193bb96bba1636b7f67cd47d3fc (diff) | |
download | qmk_firmware-7c0f2ae6d1c1d3f168a5919287b6608b092b3dba.tar.gz qmk_firmware-7c0f2ae6d1c1d3f168a5919287b6608b092b3dba.zip |
[Keymap] Neo2 for ErgoDox on MacOS US QWERTY / ABC Extended keymap (#5862)
This is a Neo2 inspired layout that is meant to be fully usable on
MacOS when used with the default US QWERTY/ABC Extended keymap.
Neo2 layers 1-4 have been almost fully implemented in hardware.
Layers 5 and 6 (greek and mathematical symbols) have been left
out for now as most of them aren't available on the default
keymaps.
Layer toggling for layer 3 on the right hand side utilizes a
tap-toggle approach that is a combination of MO & LT macros.
This is required to allow sending Y when tapped, @ when tapped
while the SHIFT modifier is active and support momentarily
toggling the layer while the key is held.
Diffstat (limited to 'layouts/community/ergodox/osx_neo2/layers.h')
-rw-r--r-- | layouts/community/ergodox/osx_neo2/layers.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/layouts/community/ergodox/osx_neo2/layers.h b/layouts/community/ergodox/osx_neo2/layers.h new file mode 100644 index 000000000..a5e0cba00 --- /dev/null +++ b/layouts/community/ergodox/osx_neo2/layers.h | |||
@@ -0,0 +1,9 @@ | |||
1 | enum layers { | ||
2 | NEO_1, // layer_0 | ||
3 | NEO_3, // layer_1 | ||
4 | NEO_4, // layer_2 | ||
5 | NEO_5, // layer_3 | ||
6 | NEO_6, // layer_4 | ||
7 | US_1, // layer_5 | ||
8 | FKEYS // layer_6 | ||
9 | }; \ No newline at end of file | ||