mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 10:39:09 +00:00
Allows Terminal to use ModTap/LayerTap keys (#4586)
* fixes #4583 * #4583 - terminal also handles layer tap now
This commit is contained in:
parent
94ba2e5a9f
commit
cd819a7f7e
1 changed files with 6 additions and 0 deletions
|
@ -273,11 +273,17 @@ bool process_terminal(uint16_t keycode, keyrecord_t *record) {
|
||||||
disable_terminal();
|
disable_terminal();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ((keycode >= QK_MOD_TAP && keycode <= QK_MOD_TAP_MAX) || (keycode >= QK_LAYER_TAP && keycode <= QK_LAYER_TAP_MAX)) {
|
||||||
|
keycode = keycode & 0xFF;
|
||||||
|
}
|
||||||
|
|
||||||
if (keycode < 256) {
|
if (keycode < 256) {
|
||||||
uint8_t str_len;
|
uint8_t str_len;
|
||||||
char char_to_add;
|
char char_to_add;
|
||||||
switch (keycode) {
|
switch (keycode) {
|
||||||
case KC_ENTER:
|
case KC_ENTER:
|
||||||
|
case KC_KP_ENTER:
|
||||||
push_to_cmd_buffer();
|
push_to_cmd_buffer();
|
||||||
current_cmd_buffer_pos = 0;
|
current_cmd_buffer_pos = 0;
|
||||||
process_terminal_command();
|
process_terminal_command();
|
||||||
|
|
Loading…
Reference in a new issue