summaryrefslogtreecommitdiffstats
path: root/layouts
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-10-20 01:47:59 +0200
committerDrashna Jaelre <drashna@live.com>2018-10-20 01:47:59 +0200
commitf775168c4fa870c045984069a1b55eb9d269098c (patch)
tree7d430e79335edb866e1dbe0de8dcac0171b23da2 /layouts
parent6c086f2b6d340c22462f6d6d3cb1d9b583123a65 (diff)
downloadqmk_firmware-f775168c4fa870c045984069a1b55eb9d269098c.tar.gz
qmk_firmware-f775168c4fa870c045984069a1b55eb9d269098c.tar.xz
Keymap: qwerty_code_friendly: update readme, comments (#4178)
Diffstat (limited to 'layouts')
-rw-r--r--layouts/community/ergodox/qwerty_code_friendly/keymap.c2
-rw-r--r--layouts/community/ergodox/qwerty_code_friendly/readme.md18
2 files changed, 10 insertions, 10 deletions
diff --git a/layouts/community/ergodox/qwerty_code_friendly/keymap.c b/layouts/community/ergodox/qwerty_code_friendly/keymap.c
index 2a441be0e..43a1d1ad8 100644
--- a/layouts/community/ergodox/qwerty_code_friendly/keymap.c
+++ b/layouts/community/ergodox/qwerty_code_friendly/keymap.c
@@ -445,7 +445,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
KC_MPRV, K80(L2K2), K80(L2K3),
KC_MNXT, KC_TRNS, KC_MPLY
),
-/* Keymap 3: Entire Words (one for each key)
+/* Keymap 3: Entire Words (one for each key) & Numbers
*
* .--------------------------------------------------. .--------------------------------------------------.
* | | 1 | 2 | 3 | 4 | 5 | | | | 6 | 7 | 8 | 9 | 0 | |
diff --git a/layouts/community/ergodox/qwerty_code_friendly/readme.md b/layouts/community/ergodox/qwerty_code_friendly/readme.md
index 23afa656f..9abd071b9 100644
--- a/layouts/community/ergodox/qwerty_code_friendly/readme.md
+++ b/layouts/community/ergodox/qwerty_code_friendly/readme.md
@@ -30,7 +30,7 @@ Some optional behavior is configurable without editing the code
using `CFQ_` prefixed defines which can be set by passing `EXTRAFLAGS` to make.
- `CFQ_USER_KEY0`
- (0..7) are used for custom-keys
+ (0..8) are used for custom-keys
- `CFQ_USE_MOMENTARY_LAYER_KEYS`
is used to prevent layer keys from toggling when tapped.
- `CFQ_USE_SHIFT_QUOTES`
@@ -122,12 +122,7 @@ Notes:
'--------------------' '--------------------'
```
-## Keymap 2: Media, Mouse Keys and Numbers
-
-Notes:
-
-- Numbers are included on this layer since some applications differentiate
- between numbers top row and keypad.
+## Keymap 2: F-Keys, Media & Mouse Keys
```
.--------------------------------------------------. .--------------------------------------------------.
@@ -150,12 +145,17 @@ Notes:
'--------------------' '--------------------'
```
-## Keymap 3: F-Keys & User Defined Words
+## Keymap 3: User Defined Words & Numbers
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\"`
+Notes:
+
+- Numbers are included on this layer since some applications differentiate
+ between numbers top row and keypad.
+
```
.--------------------------------------------------. .--------------------------------------------------.
| | 1 | 2 | 3 | 4 | 5 | | | | 6 | 7 | 8 | 9 | 0 | |
@@ -180,7 +180,7 @@ eg: `-DCFQ_WORD_E=\"my@email.com\"`
## Changelog
- 2018/10/19
- Move F-Keys to numpad like layout.
+ Move F-Keys to key-pad like layout.
- 2018/05/29
Add number keys for cases when keypad numbers are handled differently.