diff options
author | Fredrik Salomonsson <plattfot@gmail.com> | 2021-07-10 22:37:28 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-10 22:37:28 -0700 |
commit | 0a8accae063460f20ca83c559afdfce0fa2d00f3 (patch) | |
tree | 7cd1886dc71b200564d40bb5478d65ea6a49a119 /keyboards/kyria/keymaps/plattfot/config.h | |
parent | 2c6cff4cb74c9c1fddaf7dc1e39e6bcf79436df8 (diff) | |
download | qmk_firmware-0a8accae063460f20ca83c559afdfce0fa2d00f3.tar.gz qmk_firmware-0a8accae063460f20ca83c559afdfce0fa2d00f3.zip |
[Keymap] plattfot - Keymap updates for Kyria (#13449)
- Major change in the keymap to work with EurKey. Which relaxes some
constraints it had before when it had to take in consideration two
layouts.
With this the parenthesis can be moved to a better location instead
of being in the top right corner.
This also allows esc, del and rctrl to be moved to the base layer.
Only downside is that ctrl+lalt needed to be removed and instead
AltGr takes it's place. Add rctrl on right thumb cluster to
compensate for this which need some reorganization on the thumb
cluster.
- Split the symbol and function keys layer into two layers, one for
each hand. Make it easier to press symbols and function keys.
- Add some symbols specific for the EurKey layout.
- Change from running C-<tab> S-C-<tab> to page up/down for the right
rotary. As holding ctrl and using page up/down works the same in
firefox. Which allows the rotary to be useful for other things.
- Move scroll lock and insert to right rotary.
- Introducing close tap (CLO_TAP), which is a combination of the
double tap feature and my macros. E.g. pressing CLO_TAP and ( will
generate ()←. Which removes the need of the macros and makes it more
useful than DBL_TAP as it now saves me some keypresses. CLO_TAP exist
on both the left and right hand layers to make it easy to use.
- Use text for the secondary oled, firmware is too big after rebasing
on upstream master.
- Update image in the readme to reflect my new layout.
Diffstat (limited to 'keyboards/kyria/keymaps/plattfot/config.h')
-rw-r--r-- | keyboards/kyria/keymaps/plattfot/config.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/keyboards/kyria/keymaps/plattfot/config.h b/keyboards/kyria/keymaps/plattfot/config.h index 6e21c3ff5a..5ec5fc584b 100644 --- a/keyboards/kyria/keymaps/plattfot/config.h +++ b/keyboards/kyria/keymaps/plattfot/config.h @@ -1,4 +1,5 @@ /* Copyright 2019 Thomas Baart <thomas@splitkb.com> + * Copyright 2020-2021 Fredrik Salomonsson <plattfot@gmail.com> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -37,4 +38,7 @@ #define LEADER_PER_KEY_TIMING #define LEADER_TIMEOUT 350 -#define TAPPING_TERM 200 +// Remove the delay for the OSL keys. Not using any other tap keys. +// Otherwise TAPPING_TERM_PER_KEY would be the way to go. +#define TAPPING_TERM 0 + |