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.

51 lines
4.9 KiB

Remove Full Bootmagic (#13846) * disambiguate Bootmagic rules in keymaps The files edited by this commit were added at a point in time where `BOOTMAGIC_ENABLE = yes` enabled full Bootmagic. This commit edits the files to specify that full Bootmagic is intended. * remove BOOTMAGIC_ENABLE=full setting * unify commented BOOTMAGIC_ENABLE rules in keyboards Explicitly sets `BOOTMAGIC_ENABLE = no` in keyboards where the rule was commented out. Command: ``` find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;#[ \t]*\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-zA-Z]\+\).*;\1 = no # Virtual DIP switch configuration;g' {} + ``` * remove commented Bootmagic rules from keymap/user level Command: ``` find keyboards/ layouts/ users/ -type f -name 'rules.mk' -exec sed -i -e '/#.*\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*/d' {} + ``` * update keyboard BOOTMAGIC_ENABLE rule formatting Sets the formatting of BOOTMAGIC_ENABLE rules to `BOOTMAGIC_ENABLE = [value]`, without the inline comments (which will be replaced later). Command: ``` find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*;\1 = \2;g' '{}' + ``` * update keyboards' BOOTMAGIC_ENABLE settings Updates keyboard `rules.mk` files to use `BOOTMAGIC_ENABLE = lite` where `BOOTMAGIC_ENABLE = full` was being used. Command: ``` find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = \)full;\1lite;g' '{}' + ``` * update keymap/user BOOTMAGIC_ENABLE settings Updates keymap/user `rules.mk` files to use `BOOTMAGIC_ENABLE = lite` where `BOOTMAGIC_ENABLE = full` was being used. Commands: ``` find keyboards/ -type f -name 'rules.mk' -and -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE[ \t=]\+\)full;\1lite;g' '{}' + find layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE[ \t=]\+\)full;\1lite;g' '{}' + ``` * remove and replace inline comments in keyboards and keymap/user files Removes and replaces the inline comments, which have been updated to read `Enable Bootmagic Lite`. Commands: ``` find keyboards/ -type f -name 'rules.mk' -and -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*;\1 = \2;g' '{}' + find layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*;\1 = \2;g' '{}' + find keyboards/ layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = lite\);\1 # Enable Bootmagic Lite;g' '{}' + find keyboards/ layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = yes\);\1 # Enable Bootmagic Lite;g' '{}' + find keyboards/ layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = no\);\1 # Enable Bootmagic Lite;g' '{}' + ``` * rename improperly named makefiles Some files intended to be used as makefiles had improper names causing them to not be used as intended when building. This commit corrects the filenames of the affected files. * update renamed file with new rule formatting * update QMK's template files Updates QMK's `rules.mk` templates to use the new inline comment. * update QMK Docs - remove documentation of full Bootmagic - update links to Bootmagic Lite doc - add doc for Magic Keycodes * rules.mk patch for coarse/ixora and coarse/vinta
2 years ago
  1. # Command
  2. Command, formerly known as Magic, is a way to change your keyboard's behavior without having to flash or unplug it to use [Bootmagic Lite](feature_bootmagic.md). There is a lot of overlap between this functionality and the [Magic Keycodes](keycodes_magic.md). Wherever possible we encourage you to use that feature instead of Command.
  3. On some keyboards Command is disabled by default. If this is the case, it must be explicitly enabled in your `rules.mk`:
  4. ```make
  5. COMMAND_ENABLE = yes
  6. ```
  7. ## Usage
  8. To use Command, hold down the key combination defined by the `IS_COMMAND()` macro. By default this is Left Shift+Right Shift. Then, press the key corresponding to the command you want. For example, to output the current QMK version to the QMK Toolbox console, press Left Shift+Right Shift+`V`.
  9. ## Configuration
  10. If you would like to change the key assignments for Command, `#define` these in your `config.h` at either the keyboard or keymap level. All keycode assignments here must omit the `KC_` prefix.
  11. |Define |Default |Description |
  12. |------------------------------------|--------------------------------|------------------------------------------------|
  13. |`IS_COMMAND()` |`(get_mods() == MOD_MASK_SHIFT)`|The key combination to activate Command |
  14. |`MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS` |`true` |Set default layer with the Function row |
  15. |`MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS` |`true` |Set default layer with the number keys |
  16. |`MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM`|`false` |Set default layer with `MAGIC_KEY_LAYER0..9` |
  17. |`MAGIC_KEY_DEBUG` |`D` |Toggle debugging over serial |
  18. |`MAGIC_KEY_DEBUG_MATRIX` |`X` |Toggle key matrix debugging |
  19. |`MAGIC_KEY_DEBUG_KBD` |`K` |Toggle keyboard debugging |
  20. |`MAGIC_KEY_DEBUG_MOUSE` |`M` |Toggle mouse debugging |
  21. |`MAGIC_KEY_CONSOLE` |`C` |Enable the Command console |
  22. |`MAGIC_KEY_VERSION` |`V` |Print the running QMK version to the console |
  23. |`MAGIC_KEY_STATUS` |`S` |Print the current keyboard status to the console|
  24. |`MAGIC_KEY_HELP` |`H` |Print Command help to the console |
  25. |`MAGIC_KEY_HELP_ALT` |`SLASH` |Print Command help to the console (alternate) |
  26. |`MAGIC_KEY_LAYER0` |`0` |Make layer 0 the default layer |
  27. |`MAGIC_KEY_LAYER0_ALT` |`GRAVE` |Make layer 0 the default layer (alternate) |
  28. |`MAGIC_KEY_LAYER1` |`1` |Make layer 1 the default layer |
  29. |`MAGIC_KEY_LAYER2` |`2` |Make layer 2 the default layer |
  30. |`MAGIC_KEY_LAYER3` |`3` |Make layer 3 the default layer |
  31. |`MAGIC_KEY_LAYER4` |`4` |Make layer 4 the default layer |
  32. |`MAGIC_KEY_LAYER5` |`5` |Make layer 5 the default layer |
  33. |`MAGIC_KEY_LAYER6` |`6` |Make layer 6 the default layer |
  34. |`MAGIC_KEY_LAYER7` |`7` |Make layer 7 the default layer |
  35. |`MAGIC_KEY_LAYER8` |`8` |Make layer 8 the default layer |
  36. |`MAGIC_KEY_LAYER9` |`9` |Make layer 9 the default layer |
  37. |`MAGIC_KEY_BOOTLOADER` |`B` |Jump to bootloader |
  38. |`MAGIC_KEY_BOOTLOADER_ALT` |`ESC` |Jump to bootloader (alternate) |
  39. |`MAGIC_KEY_LOCK` |`CAPS` |Lock the keyboard so nothing can be typed |
  40. |`MAGIC_KEY_EEPROM` |`E` |Print stored EEPROM config to the console |
  41. |`MAGIC_KEY_EEPROM_CLEAR` |`BSPACE` |Clear the EEPROM |
  42. |`MAGIC_KEY_NKRO` |`N` |Toggle N-Key Rollover (NKRO) |
  43. |`MAGIC_KEY_SLEEP_LED` |`Z` |Toggle LED when computer is sleeping |