diff options
| author | Joel Challis <git@zvecr.com> | 2020-02-05 02:49:10 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-04 18:49:10 -0800 |
| commit | 393937b43fe37a9faceb3a40e5f6fcc604659fb0 (patch) | |
| tree | 16fc3d9226a68205021d7db2ce6530b38f6868e7 /quantum/process_keycode/process_grave_esc.h | |
| parent | efe8bd8e9218f67a0845ccfa3eef7b074aebf7dc (diff) | |
| download | qmk_firmware-393937b43fe37a9faceb3a40e5f6fcc604659fb0.tar.gz qmk_firmware-393937b43fe37a9faceb3a40e5f6fcc604659fb0.zip | |
Relocate grave keycode processing (#8082)
* Relocate grave keycode processing
* Tidy up code
* Refactor grave -> grave_esc
Diffstat (limited to 'quantum/process_keycode/process_grave_esc.h')
| -rw-r--r-- | quantum/process_keycode/process_grave_esc.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/quantum/process_keycode/process_grave_esc.h b/quantum/process_keycode/process_grave_esc.h new file mode 100644 index 000000000..bbf448376 --- /dev/null +++ b/quantum/process_keycode/process_grave_esc.h | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | /* Copyright 2020 | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | #pragma once | ||
| 17 | |||
| 18 | #include "quantum.h" | ||
| 19 | |||
| 20 | bool process_grave_esc(uint16_t keycode, keyrecord_t *record); | ||
