aboutsummaryrefslogtreecommitdiffstats
path: root/docs/feature_macros.md
Commit message (Collapse)AuthorAgeFilesLines
* [Docs] Improve Unicode documentation (#8676)Konstantin Đorđević2020-06-201-43/+46
|
* Add *OPT aliases for *ALT keycodes and macros (#8714)Konstantin Đorđević2020-04-121-2/+2
|
* Add Post Processing to process_record (#4892)Drashna Jaelre2020-03-231-0/+40
| | | | | | | | | | | | | | | | | | | * Improve process_record system Code based on @colinta's * Rename and better handle functions * Fix incorrect function call to process_record_user * Add documentation for post_process_record * Add both get_event_keycode and get_record_keycode functions And add some comments about these functions * Update code format * Cleanup merge artifacts
* Add support for delays in send_string. (#8244)Nick Brassel2020-02-271-5/+15
|
* Add link to "Useful functions" in macro docs (#7446)Jez Cope2020-02-231-0/+2
| | | | | | | | | | | | | * Add link to "Useful functions" in macro docs Help people find additional features they can activate within a macro * Update docs/feature_macros.md Co-Authored-By: Drashna Jaelre <drashna@live.com> Co-authored-by: skullydazed <skullydazed@users.noreply.github.com> Co-authored-by: Drashna Jaelre <drashna@live.com>
* Send string keycode tweaks (#7471)fauxpark2019-11-251-8/+11
|
* [Docs] Update Super ALT↯TAB to remove use of unregister_code16 (#5766)Jez Cope2019-05-041-1/+1
| | | | | The code as originally listed didn't work for me, but replacing `unregister_code16(LALT(KC_TAB));` with `unregister_code(KC_LALT);` fixes the problem and causes the macro to work as intended. Thanks to folks on Discord for helping me figure this out.
* [Docs] Adding Alt↯Tab example macro (#5616)roguepullrequest2019-04-141-1/+46
|
* [Docs] Smallish overhaul of the docs (#5281)Drashna Jaelre2019-03-181-44/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix up Common functions doc * Add to extra commands to flashing doc * Rearrange and touch up Macros * Expand Newbs Flashing guide * Update process_record documentation * Add git to best practices name in sidebar * Expand FAQ for build/flashing * Add deprecated info to functions * Update docs/feature_macros.md Co-Authored-By: drashna <drashna@live.com> * Update docs/feature_macros.md Co-Authored-By: drashna <drashna@live.com> * Update docs/flashing.md Co-Authored-By: drashna <drashna@live.com> * Update docs/flashing.md Co-Authored-By: drashna <drashna@live.com> * Update docs/keymap.md Co-Authored-By: drashna <drashna@live.com> * Update docs/newbs_flashing.md Co-Authored-By: drashna <drashna@live.com> * Update docs/newbs_flashing.md Co-Authored-By: drashna <drashna@live.com> * Update docs/custom_quantum_functions.md Co-Authored-By: drashna <drashna@live.com> * Update docs/faq_build.md Co-Authored-By: drashna <drashna@live.com> * Update docs/feature_macros.md Co-Authored-By: drashna <drashna@live.com> * Update docs/keymap.md Co-Authored-By: drashna <drashna@live.com> * Fix up Common functions doc * Make pre-init example accurate * Update docs/custom_quantum_functions.md Co-Authored-By: drashna <drashna@live.com> * Zadig Driver catchall * Spelling Depriciated * Completely remove fn_actions section
* Replace instances of KEYMAP with LAYOUTnoroadsleft2019-02-211-3/+3
| | | | | | Many instances in the QMK Docs referenced KEYMAP macros, which is outdated terminology. Replaced most instances of KEYMAP with LAYOUT, to reflect the desired usage.
* Fix up tap_code functionality (#4609)Drashna Jaelre2018-12-141-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add delay in Tap Code to avoid issues I think a few people have reporting issues with it working properly, and it may be a timing issue. The 'register_code' uses this sort of delay in some of the functions, and this is probably why. Adding the 100ms delay should hopefully fix any issues with it. * Make tap_code delay configurable * Update documentation * Bring tap_code16 inline with changes * Fix type for tap_code16 Bad copy-paste job * Just use the value check for the define * Clarify timing in docs Co-Authored-By: drashna <drashna@live.com> * Wordsmithing Co-Authored-By: drashna <drashna@live.com>
* Fix macro docs to be consistent with keyboard template (#4600)Drashna Jaelre2018-12-111-70/+88
|
* Add tap_code function (#3784)Drashna Jaelre2018-10-011-0/+4
| | | | | | | | | | * Add tap_code * formatting * Doc clarification * Rename variable to make more consistent
* Fix up info boxes.skullY2018-05-071-6/+2
|
* Add SS_RALT for AltGR usage in macrosDrashna Jael're2018-03-091-0/+1
|
* Update feature_macros.md (#2387)Mitchell van Manen2018-03-011-3/+3
| | | break statements are never reached due to the return statement, so unnecessary
* Trim trailing whitespacefauxpark2017-12-091-2/+2
|
* Fix some of the more obvious typosfauxpark2017-12-091-2/+2
|
* Convert all headings to Title Casefauxpark2017-12-091-10/+8
|
* added SS_LSFT to featured macrosGilbert Consellado2017-11-201-0/+1
|
* add example keymapBalz Guenat2017-11-161-4/+15
|
* extend macro docs a bitBalz Guenat2017-11-161-10/+44
|
* Restructure the hardware and feature docs to make things easier to find (#1888)skullydazed2017-10-241-0/+220
* fix #1313 by documenting more config.h options * Clean up and organize documentation