diff options
author | QMK Bot <hello@qmk.fm> | 2022-10-05 16:55:12 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2022-10-05 16:55:12 +0000 |
commit | 86ce1d4b04031174b3eca666fbee5f7c9c706ab2 (patch) | |
tree | 1893ffaa3f6096e3a07d8cf971c14880db7e82bf /docs/feature_macros.md | |
parent | d1b6b062024dddf047f760efbad21edb2acca394 (diff) | |
parent | 959f4cbb621868a4f0c1701f54ad2a1f45d889af (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'docs/feature_macros.md')
-rw-r--r-- | docs/feature_macros.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/feature_macros.md b/docs/feature_macros.md index f5bd5be41b..63b7223db9 100644 --- a/docs/feature_macros.md +++ b/docs/feature_macros.md @@ -374,7 +374,7 @@ This will clear all keys besides the mods currently pressed. This macro will register `KC_LALT` and tap `KC_TAB`, then wait for 1000ms. If the key is tapped again, it will send another `KC_TAB`; if there is no tap, `KC_LALT` will be unregistered, thus allowing you to cycle through windows. ```c -bool is_alt_tab_active = false; // ADD this near the begining of keymap.c +bool is_alt_tab_active = false; // ADD this near the beginning of keymap.c uint16_t alt_tab_timer = 0; // we will be using them soon. enum custom_keycodes { // Make sure have the awesome keycode ready |