vial/combo: prototype
This commit is contained in:
@ -126,6 +126,10 @@ bool process_combo(uint16_t keycode, keyrecord_t *record) {
|
||||
drop_buffer = false;
|
||||
bool no_combo_keys_pressed = true;
|
||||
|
||||
if (keycode == KC_NO) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (keycode == CMB_ON && record->event.pressed) {
|
||||
combo_enable();
|
||||
return true;
|
||||
|
@ -16,6 +16,10 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifdef VIAL_ENABLE
|
||||
#include "vial.h"
|
||||
#endif
|
||||
|
||||
#include "progmem.h"
|
||||
#include "quantum.h"
|
||||
#include <stdint.h>
|
||||
|
Reference in New Issue
Block a user