You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.1 KiB

  1. # Space Cadet Shift Enter
  2. Based on the [Space Cadet Shift](feature_space_cadet_shift.md) feature. Tap the Shift key on its own, and it behaves like Enter. When held, the Shift functions as normal.
  3. ## Usage
  4. Replace any Shift key in your keymap with `KC_SFTENT` (Shift, Enter), and you're done.
  5. ## Keycodes
  6. |Keycode |Description |
  7. |-----------|----------------------------------------|
  8. |`KC_SFTENT`|Right Shift when held, Enter when tapped|
  9. ## Caveats
  10. As with Space Cadet Shift, this feature may conflict with Command, so it should be disabled in your `rules.mk` with:
  11. ```make
  12. COMMAND_ENABLE = no
  13. ```
  14. This feature also uses the same timers as Space Cadet Shift, so using them in tandem may produce strange results.
  15. ## Configuration
  16. By default Space Cadet assumes a US ANSI layout, but if you'd like to use a different key for Enter, you can redefine it in your `config.h`:
  17. |Define |Default |Description |
  18. |------------|--------|------------------------------------------------|
  19. |`SFTENT_KEY`|`KC_ENT`|The keycode to send when the Shift key is tapped|