#include "combo.h"
void process_combo_event(uint16_t combo_index, bool pressed){
switch(combo_index) {
case ZV_COPY:
if (pressed) {
tap_code16(LCTL(KC_C));
}
break;
case XV_CUT:
tap_code16(LCTL(KC_X));
case CV_PASTE:
tap_code16(LCTL(KC_V));
case QP_SLEEP:
tap_code16(KC_SYSTEM_SLEEP);