diff options
Diffstat (limited to 'users/drashna/readme/wrappers.md')
-rw-r--r-- | users/drashna/readme/wrappers.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/users/drashna/readme/wrappers.md b/users/drashna/readme/wrappers.md new file mode 100644 index 000000000..fd62ff160 --- /dev/null +++ b/users/drashna/readme/wrappers.md | |||
@@ -0,0 +1,11 @@ | |||
1 | ## Keyboard Layout Templates | ||
2 | |||
3 | This borrows from @jola5's "Not quite neo" code. This allows me to maintain blocks of keymaps in the userspace, so that I can modify the userspace, and this is reflected in all of the keyboards that use it, at once. | ||
4 | |||
5 | This makes adding tap/hold mods, or other special keycodes or functions to all keyboards super easy, as it's done to all of them at once. | ||
6 | |||
7 | The caveat here is that the keymap needs a processor/wrapper, as it doesn't like the substitutions. However, this is as simple as just pushing it through a define. For instance: | ||
8 | |||
9 | `#define LAYOUT_ergodox_wrapper(...) LAYOUT_ergodox(__VA_ARGS__)` | ||
10 | |||
11 | Once that's been done and you've switched the keymaps to use the "wrapper", it will read the substitution blocks just fine. | ||