2017-09-30 12:04:08 +02:00
|
|
|
# ErgoDox EZ Code Friendly Qwerty Layout
|
|
|
|
|
|
|
|
- This layout aims to balance muscle memory from a typical QWERTY layout
|
|
|
|
with having keys used for software development easily accessible.
|
|
|
|
|
2018-03-09 19:19:51 +01:00
|
|
|
The this layout is a normalized qwerty,
|
|
|
|
with some configurable keys left thumb cluster so you can use it more as needed.
|
|
|
|
|
2019-02-24 02:21:01 +01:00
|
|
|
- Arrow keys follow VIM convention.
|
2017-09-30 12:04:08 +02:00
|
|
|
|
|
|
|
- On the top row only symbols are used (not numbers),
|
|
|
|
it's expected the symbol layer's number-pad layout will be used for numbers.
|
|
|
|
|
|
|
|
- Symbols match regular QWERTY.
|
|
|
|
except for '()' which are grouped with other brackets.
|
|
|
|
In their place -/= keys are placed, which almost matches a regular layout.
|
|
|
|
|
|
|
|
- Brackets are placed symmetrically along the center edges,
|
|
|
|
if using keys from both sides is inconvenient - the symbol layer has macros
|
|
|
|
at the same key locations to type matching pairs.
|
|
|
|
|
2018-05-20 19:05:01 +02:00
|
|
|
- The space-bar on the lower-left looks like it's in an obscure location,
|
2018-03-06 15:54:50 +01:00
|
|
|
however using the larger thumb cluster
|
|
|
|
ended up being more of a reach while typing.
|
2017-09-30 12:04:08 +02:00
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
|
|
|
Some optional behavior is configurable without editing the code
|
|
|
|
using `CFQ_` prefixed defines which can be set by passing `EXTRAFLAGS` to make.
|
|
|
|
|
2018-03-06 15:54:50 +01:00
|
|
|
- `CFQ_USER_KEY0`
|
2018-10-20 01:47:59 +02:00
|
|
|
(0..8) are used for custom-keys
|
2018-03-06 15:54:50 +01:00
|
|
|
- `CFQ_USE_MOMENTARY_LAYER_KEYS`
|
|
|
|
is used to prevent layer keys from toggling when tapped.
|
2018-03-09 19:19:51 +01:00
|
|
|
- `CFQ_USE_SHIFT_QUOTES`
|
|
|
|
an optional handy shortcut for writing quotes that inserts the
|
|
|
|
cursor between the quotation marks.
|
|
|
|
|
|
|
|
Holding LShift, then RShift types: "" (then presses left).
|
|
|
|
|
|
|
|
Holding RShift, then LShift types: '' (then presses left).
|
|
|
|
|
2018-03-06 15:54:50 +01:00
|
|
|
- `CFQ_WORD_[A-Z]`
|
|
|
|
defines can bind a key to an entire user defined word.
|
2017-09-30 12:04:08 +02:00
|
|
|
|
2018-04-15 18:08:28 +02:00
|
|
|
- `CFQ_USE_80_KEYS`
|
|
|
|
enables 80 key layout, none of the extra keys are bound,
|
|
|
|
they need to be set with defines: `CFQ_USER_K80_L0K0` .. `CFQ_USER_K80_L3K4`.
|
|
|
|
Where `L#` is the layer and `K#` is the key.
|
2017-09-30 12:04:08 +02:00
|
|
|
|
|
|
|
|
|
|
|
## Keymap 0: Basic layer
|
|
|
|
|
|
|
|
```
|
2018-04-15 18:08:28 +02:00
|
|
|
.--------------------------------------------------. .--------------------------------------------------.
|
|
|
|
| Grave | ! | @ | # | $ | % | { | | } | ^ | & | * | - | = | BSpace |
|
|
|
|
|--------+------+------+------+------+------+------| |------+------+------+------+------+------+--------|
|
|
|
|
| Tab | Q | W | E | R | T | ( | | ) | Y | U | I | O | P | \ |
|
|
|
|
|--------+------+------+------+------+------| | | |------+------+------+------+------+--------|
|
|
|
|
| Esc | A | S | D | F | G |------| |------| H | J | K | L | ; | ' |
|
|
|
|
|--------+------+------+------+------+------| [ | | ] |------+------+------+------+------+--------|
|
|
|
|
| LShift | Z | X | C | V | B | | | | N | M | , | . | / | RShift |
|
|
|
|
'--------+------+------+------+------+-------------' '-------------+------+------+------+------+--------'
|
2019-11-20 06:17:08 +01:00
|
|
|
| LCtl |Super | Alt | App | Menu | | Left | Down | Up |Right | Del |
|
2018-04-15 18:08:28 +02:00
|
|
|
'----------------------------------' '----------------------------------'
|
|
|
|
.-------------. .-------------.
|
2019-11-20 06:17:08 +01:00
|
|
|
|BSpace| Del | | Home | End |
|
2018-04-15 18:08:28 +02:00
|
|
|
.------+------+------| |------+------+------.
|
|
|
|
| | |CapsLk| | PgUp | | |
|
2019-11-20 06:17:08 +01:00
|
|
|
|Space | ~L1 |------| |------| ~L2 |Enter |
|
|
|
|
| | |Insert| | PgDn | | |
|
2018-04-15 18:08:28 +02:00
|
|
|
'--------------------' '--------------------'
|
2017-11-07 02:41:39 +01:00
|
|
|
|
2018-03-06 15:54:50 +01:00
|
|
|
Optional overrides: see CFQ_USER_KEY# defines.
|
2017-11-07 02:41:39 +01:00
|
|
|
|
2018-04-15 18:08:28 +02:00
|
|
|
.--------------------------------------------------. .--------------------------------------------------.
|
2019-11-20 06:17:08 +01:00
|
|
|
| | | | | | | | | | | | | | | USR9 |
|
2018-04-15 18:08:28 +02:00
|
|
|
|--------+------+------+------+------+------+------| |------+------+------+------+------+------+--------|
|
|
|
|
| | | | | | | | | | | | | | | |
|
|
|
|
|--------+------+------+------+------+------| | | |------+------+------+------+------+--------|
|
|
|
|
| | | | | | |------| |------| | | | | | |
|
|
|
|
|--------+------+------+------+------+------| | | |------+------+------+------+------+--------|
|
|
|
|
| | | | | | | | | | | | | | | |
|
|
|
|
'--------+------+------+------+------+-------------' '-------------+------+------+------+------+--------'
|
2019-11-20 06:17:08 +01:00
|
|
|
| | | | USR0 | USR1 | | | | | | USR8 |
|
2018-04-15 18:08:28 +02:00
|
|
|
'----------------------------------' '----------------------------------'
|
|
|
|
.-------------. .-------------.
|
|
|
|
| USR2 | USR3 | | | |
|
|
|
|
.------+------+------| |------+------+------.
|
|
|
|
| | | USR6 | | | | |
|
|
|
|
| USR4 | USR5 |------| |------| | |
|
|
|
|
| | | USR7 | | | | |
|
|
|
|
'--------------------' '--------------------'
|
2017-09-30 12:04:08 +02:00
|
|
|
```
|
|
|
|
|
2019-11-20 06:17:08 +01:00
|
|
|
## Keymap 1: KeyPad, Bracket Pairs & Macro Record
|
2017-09-30 12:04:08 +02:00
|
|
|
|
2017-10-29 23:34:02 +01:00
|
|
|
Notes:
|
|
|
|
|
|
|
|
- The double bracket keys on this layer press left to position the cursor between them.
|
|
|
|
- The left thumb cluster is used for macro record/replay.
|
2017-09-30 12:04:08 +02:00
|
|
|
|
|
|
|
```
|
2018-04-15 18:08:28 +02:00
|
|
|
.--------------------------------------------------. .--------------------------------------------------.
|
|
|
|
| | | | | | | {} | | }{ | |NumLck| / | * | - | |
|
|
|
|
|--------+------+------+------+------+------+------| |------+------+------+------+------+------+--------|
|
|
|
|
| | | | | | => | () | | )( | <= | 7 | 8 | 9 | + | |
|
|
|
|
|--------+------+------+------+------+------| | | |------+------+------+------+------+--------|
|
|
|
|
| | | | | | -> |------| |------| <- | 4 | 5 | 6 | + | |
|
|
|
|
|--------+------+------+------+------+------| [] | | ][ |------+------+------+------+------+--------|
|
|
|
|
| | | | | | <> | | | | >< | 1 | 2 | 3 | Enter| |
|
|
|
|
'--------+------+------+------+------+-------------' '-------------+------+------+------+------+--------'
|
|
|
|
| | | | | | | 0 | | . | Enter| |
|
|
|
|
'----------------------------------' '----------------------------------'
|
|
|
|
.-------------. .-------------.
|
|
|
|
|Start1|Start2| | | |
|
|
|
|
.------+------+------| |------+------+------.
|
2019-11-20 06:17:08 +01:00
|
|
|
| | |Play1 | | | | |
|
|
|
|
| Stop | |------| |------| | |
|
|
|
|
| | |Play2 | | | | |
|
2018-04-15 18:08:28 +02:00
|
|
|
'--------------------' '--------------------'
|
2017-09-30 12:04:08 +02:00
|
|
|
```
|
|
|
|
|
2018-10-20 01:47:59 +02:00
|
|
|
## Keymap 2: F-Keys, Media & Mouse Keys
|
2017-09-30 12:04:08 +02:00
|
|
|
|
|
|
|
```
|
2018-04-15 18:08:28 +02:00
|
|
|
.--------------------------------------------------. .--------------------------------------------------.
|
2018-10-19 17:43:55 +02:00
|
|
|
| | | | | | | | | Mute | | F10 | F11 | F12 | | |
|
2018-04-15 18:08:28 +02:00
|
|
|
|--------+------+------+------+------+------+------| |------+------+------+------+------+------+--------|
|
2018-10-19 17:43:55 +02:00
|
|
|
| | | | MsUp | | |MWhlUp| |VolUp | | F7 | F8 | F9 | | |
|
2018-04-15 18:08:28 +02:00
|
|
|
|--------+------+------+------+------+------| | | |------+------+------+------+------+--------|
|
2018-10-19 17:43:55 +02:00
|
|
|
| | |MsLeft|MsDown|MsRght| |------| |------| | F4 | F5 | F6 | | |
|
2018-05-20 19:05:01 +02:00
|
|
|
|--------+------+------+------+------+------|MWhlDn| |VolDn |------+------+------+------+------+--------|
|
2018-10-19 17:43:55 +02:00
|
|
|
| | | Rclk | Mclk | Lclk | | | | | | F1 | F2 | F3 | | |
|
2018-04-15 18:08:28 +02:00
|
|
|
'--------+------+------+------+------+-------------' '-------------+------+------+------+------+--------'
|
|
|
|
| | | | | | | | | | | |
|
|
|
|
'----------------------------------' '----------------------------------'
|
|
|
|
.-------------. .-------------.
|
2018-05-20 19:05:01 +02:00
|
|
|
| | | | MRwd | MFwd |
|
2018-04-15 18:08:28 +02:00
|
|
|
.------+------+------| |------+------+------.
|
2018-05-20 19:05:01 +02:00
|
|
|
| | | | | MPrv | | |
|
|
|
|
| | |------| |------| | Play |
|
|
|
|
| | | | | MNxt | | |
|
2018-04-15 18:08:28 +02:00
|
|
|
'--------------------' '--------------------'
|
2017-09-30 12:04:08 +02:00
|
|
|
```
|
|
|
|
|
2018-10-20 01:47:59 +02:00
|
|
|
## Keymap 3: User Defined Words & Numbers
|
2018-03-06 15:54:50 +01:00
|
|
|
|
2019-11-20 06:17:08 +01:00
|
|
|
Activate by holding L1 & L2.
|
|
|
|
|
2018-03-06 15:54:50 +01:00
|
|
|
This is for assigning whole words to single keys.
|
|
|
|
You can define the arguments (which must be quoted) using: `CFQ_WORD_[A-Z]`
|
|
|
|
eg: `-DCFQ_WORD_E=\"my@email.com\"`
|
|
|
|
|
2018-10-20 01:47:59 +02:00
|
|
|
Notes:
|
|
|
|
|
|
|
|
- Numbers are included on this layer since some applications differentiate
|
|
|
|
between numbers top row and keypad.
|
|
|
|
|
2018-03-06 15:54:50 +01:00
|
|
|
```
|
2018-04-15 18:08:28 +02:00
|
|
|
.--------------------------------------------------. .--------------------------------------------------.
|
2018-10-19 17:43:55 +02:00
|
|
|
| | 1 | 2 | 3 | 4 | 5 | | | | 6 | 7 | 8 | 9 | 0 | |
|
2018-04-15 18:08:28 +02:00
|
|
|
|--------+------+------+------+------+------+------| |------+------+------+------+------+------+--------|
|
|
|
|
| | Q | W | E | R | T | | | | Y | U | I | O | P | |
|
|
|
|
|--------+------+------+------+------+------| | | |------+------+------+------+------+--------|
|
|
|
|
| | A | S | D | F | G |------| |------| H | J | K | L | | |
|
|
|
|
|--------+------+------+------+------+------| | | |------+------+------+------+------+--------|
|
|
|
|
| | Z | X | C | V | B | | | | N | M | | | | |
|
|
|
|
'--------+------+------+------+------+-------------' '-------------+------+------+------+------+--------'
|
|
|
|
| | | | | | | | | | | |
|
|
|
|
'----------------------------------' '----------------------------------'
|
|
|
|
.-------------. .-------------.
|
|
|
|
| | | | | |
|
|
|
|
.------+------+------| |------+------+------.
|
|
|
|
| | | | | | | |
|
|
|
|
| | |------| |------| | |
|
|
|
|
| | | | | | | |
|
|
|
|
'--------------------' '--------------------'
|
2018-03-06 15:54:50 +01:00
|
|
|
```
|
|
|
|
|
2017-09-30 12:04:08 +02:00
|
|
|
## Changelog
|
2017-10-04 09:27:53 +02:00
|
|
|
|
2019-11-20 06:17:08 +01:00
|
|
|
- 2019/11/20
|
|
|
|
Move space to thumb cluster
|
|
|
|
Make L1 and L2 symmetrical.
|
|
|
|
Activate L3 by holding L1 & L2.
|
|
|
|
Add App & Menu keys.
|
|
|
|
|
2018-10-19 17:43:55 +02:00
|
|
|
- 2018/10/19
|
2018-10-20 01:47:59 +02:00
|
|
|
Move F-Keys to key-pad like layout.
|
2018-10-19 17:43:55 +02:00
|
|
|
|
2018-05-30 00:58:51 +02:00
|
|
|
- 2018/05/29
|
|
|
|
Add number keys for cases when keypad numbers are handled differently.
|
|
|
|
|
2018-05-20 19:05:01 +02:00
|
|
|
- 2018/05/19
|
|
|
|
Move all media keys to right thumb cluster
|
|
|
|
(matching page up/down, home/end locations).
|
|
|
|
|
2018-04-15 18:08:28 +02:00
|
|
|
- 2018/04/14
|
|
|
|
Add `CFQ_USE_80_KEYS` to optionally support an 80 key layout.
|
|
|
|
|
2018-03-09 19:19:51 +01:00
|
|
|
- 2018/03/08
|
|
|
|
Add `CFQ_USE_SHIFT_QUOTES` option.
|
|
|
|
Add `CFQ_USER_KEY8` key.
|
|
|
|
|
|
|
|
When holding shift `CFQ_WORD_[A-Z]` use title caps.
|
|
|
|
|
2018-03-06 15:54:50 +01:00
|
|
|
- 2018/03/06
|
|
|
|
Add layer for user defined words (replaces `CFQ_USE_EXPEREMENTAL_LAYER`).
|
|
|
|
|
|
|
|
Minor changes to thumb cluster.
|
|
|
|
|
|
|
|
Move backspace to left thumb, optionally remap the top right backspace.
|
|
|
|
|
|
|
|
Make keypad layout match a typical numpad.
|
|
|
|
|
|
|
|
Move F-Keys to layer 3.
|
|
|
|
|
2017-11-09 12:47:37 +01:00
|
|
|
- 2017/11/09
|
|
|
|
Use Caps-Lock when `CFQ_USE_EXPEREMENTAL_LAYER` isn't defined.
|
|
|
|
|
2017-11-07 02:41:39 +01:00
|
|
|
- 2017/11/07
|
|
|
|
Make thumb left thumb cluster completely configurable with defines.
|
|
|
|
Add mouse wheel to mouse layer.
|
|
|
|
|
2017-10-29 23:34:02 +01:00
|
|
|
- 2017/10/28
|
|
|
|
Make more keys user defined on the left thumb cluster.
|
|
|
|
Add macro record/replay keys.
|
|
|
|
|
2017-11-07 02:41:39 +01:00
|
|
|
- 2017/10/04
|
2017-10-04 09:27:53 +02:00
|
|
|
Move Insert key to the left thumb cluster (away from the modifier keys).
|
|
|
|
Replace with `USR2` which defaults to `APP`.
|