diff options
author | fauxpark <fauxpark@gmail.com> | 2017-12-09 16:36:32 +1100 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2017-12-09 10:46:11 -0500 |
commit | 7b0356d1d49da6574570e110f61f95692afdb3d0 (patch) | |
tree | a3e70802085ea8089f1e7851529f0296247fa264 /docs/feature_leader_key.md | |
parent | 6eb89ae906db7f226570e1839b88dcdd3a8fa962 (diff) | |
download | qmk_firmware-7b0356d1d49da6574570e110f61f95692afdb3d0.tar.gz |
Convert all headings to Title Case
Diffstat (limited to 'docs/feature_leader_key.md')
-rw-r--r-- | docs/feature_leader_key.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/feature_leader_key.md b/docs/feature_leader_key.md index bf4d5456d..fb74bf7c8 100644 --- a/docs/feature_leader_key.md +++ b/docs/feature_leader_key.md @@ -1,4 +1,4 @@ -# The Leader key: A new kind of modifier +# The Leader Key: A New Kind of Modifier If you've ever used Vim, you know what a Leader key is. If not, you're about to discover a wonderful concept. :) Instead of hitting Alt+Shift+W for example (holding down three keys at the same time), what if you could hit a _sequence_ of keys instead? So you'd hit our special modifier (the Leader key), followed by W and then C (just a rapid succession of keys), and something would happen. @@ -34,4 +34,4 @@ void matrix_scan_user(void) { } ``` -As you can see, you have three function. you can use - `SEQ_ONE_KEY` for single-key sequences (Leader followed by just one key), and `SEQ_TWO_KEYS` and `SEQ_THREE_KEYS` for longer sequences. Each of these accepts one or more keycodes as arguments. This is an important point: You can use keycodes from **any layer on your keyboard**. That layer would need to be active for the leader macro to fire, obviously.
\ No newline at end of file +As you can see, you have three function. you can use - `SEQ_ONE_KEY` for single-key sequences (Leader followed by just one key), and `SEQ_TWO_KEYS` and `SEQ_THREE_KEYS` for longer sequences. Each of these accepts one or more keycodes as arguments. This is an important point: You can use keycodes from **any layer on your keyboard**. That layer would need to be active for the leader macro to fire, obviously. |