aboutsummaryrefslogtreecommitdiff
path: root/docs/feature_space_cadet.md
diff options
context:
space:
mode:
authorXScorpion2 <rcalt2vt@gmail.com>2019-05-12 00:20:14 -0500
committerDrashna Jaelre <drashna@live.com>2019-05-11 22:20:14 -0700
commitc6184d2e7ed9695c22635431394e501b1d5e6271 (patch)
treea720b2371ea7e913c77cfc523088ed5a7a15db4c /docs/feature_space_cadet.md
parentec302295b695e43c5967a6f806c4b4505c651e13 (diff)
downloadqmk_firmware-c6184d2e7ed9695c22635431394e501b1d5e6271.tar.gz
qmk_firmware-c6184d2e7ed9695c22635431394e501b1d5e6271.zip
Added check for event pressed to clear space cadet (#5839)
* Added check for pressed to clear space cadet * Found some docs to update * Update docs/quantum_keycodes.md Co-Authored-By: fauxpark <fauxpark@gmail.com> * Changes from PR
Diffstat (limited to 'docs/feature_space_cadet.md')
-rw-r--r--docs/feature_space_cadet.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/feature_space_cadet.md b/docs/feature_space_cadet.md
index 5c375c518..075578522 100644
--- a/docs/feature_space_cadet.md
+++ b/docs/feature_space_cadet.md
@@ -20,7 +20,7 @@ Firstly, in your keymap, do one of the following:
20|`KC_RCPC` |Right Control when held, `)` when tapped | 20|`KC_RCPC` |Right Control when held, `)` when tapped |
21|`KC_LAPO` |Left Alt when held, `(` when tapped | 21|`KC_LAPO` |Left Alt when held, `(` when tapped |
22|`KC_RAPC` |Right Alt when held, `)` when tapped | 22|`KC_RAPC` |Right Alt when held, `)` when tapped |
23|`KC_SFTENT`|Right Shift when held, `Enter` when tapped | 23|`KC_SFTENT`|Right Shift when held, Enter when tapped |
24 24
25## Caveats 25## Caveats
26 26
@@ -38,10 +38,10 @@ By default Space Cadet assumes a US ANSI layout, but if your layout uses differe
38|----------------|-------------------------------|---------------------------------------------------------------------------------| 38|----------------|-------------------------------|---------------------------------------------------------------------------------|
39|`LSPO_KEYS` |`KC_LSFT, LSPO_MOD, LSPO_KEY` |Send `KC_LSFT` when held, the mod and key defined by `LSPO_MOD` and `LSPO_KEY`. | 39|`LSPO_KEYS` |`KC_LSFT, LSPO_MOD, LSPO_KEY` |Send `KC_LSFT` when held, the mod and key defined by `LSPO_MOD` and `LSPO_KEY`. |
40|`RSPC_KEYS` |`KC_RSFT, RSPC_MOD, RSPC_KEY` |Send `KC_RSFT` when held, the mod and key defined by `RSPC_MOD` and `RSPC_KEY`. | 40|`RSPC_KEYS` |`KC_RSFT, RSPC_MOD, RSPC_KEY` |Send `KC_RSFT` when held, the mod and key defined by `RSPC_MOD` and `RSPC_KEY`. |
41|`LCPO_KEYS` |`KC_LCTL, KC_LCTL, KC_9` |Send `KC_LCTL` when held, the mod `KC_LCTL` with the key `KC_9` when tapped. | 41|`LCPO_KEYS` |`KC_LCTL, KC_LSFT, KC_9` |Send `KC_LCTL` when held, the mod `KC_LSFT` with the key `KC_9` when tapped. |
42|`RCPC_KEYS` |`KC_RCTL, KC_RCTL, KC_0` |Send `KC_RCTL` when held, the mod `KC_RCTL` with the key `KC_0` when tapped. | 42|`RCPC_KEYS` |`KC_RCTL, KC_RSFT, KC_0` |Send `KC_RCTL` when held, the mod `KC_RSFT` with the key `KC_0` when tapped. |
43|`LAPO_KEYS` |`KC_LALT, KC_LALT, KC_9` |Send `KC_LALT` when held, the mod `KC_LALT` with the key `KC_9` when tapped. | 43|`LAPO_KEYS` |`KC_LALT, KC_LSFT, KC_9` |Send `KC_LALT` when held, the mod `KC_LSFT` with the key `KC_9` when tapped. |
44|`RAPC_KEYS` |`KC_RALT, KC_RALT, KC_0` |Send `KC_RALT` when held, the mod `KC_RALT` with the key `KC_0` when tapped. | 44|`RAPC_KEYS` |`KC_RALT, KC_RSFT, KC_0` |Send `KC_RALT` when held, the mod `KC_RSFT` with the key `KC_0` when tapped. |
45|`SFTENT_KEYS` |`KC_RSFT, KC_TRNS, SFTENT_KEY` |Send `KC_RSFT` when held, no mod with the key `SFTENT_KEY` when tapped. | 45|`SFTENT_KEYS` |`KC_RSFT, KC_TRNS, SFTENT_KEY` |Send `KC_RSFT` when held, no mod with the key `SFTENT_KEY` when tapped. |
46 46
47 47