You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
415 B
24 lines
415 B
7 years ago
|
#ifndef USERSPACE
|
||
|
#define USERSPACE
|
||
|
|
||
|
#include "quantum.h"
|
||
|
|
||
|
#define SRCH_CTL CTL_T(KC_F19)
|
||
|
#define LYR_SPC LT(1, KC_SPC)
|
||
|
#define NC_CTL CTL_T(KC_F18)
|
||
|
|
||
|
enum custom_keycodes {
|
||
|
HSH_TLD = SAFE_RANGE,
|
||
|
CTRL_A,
|
||
|
CMD_ALT_C,
|
||
|
CMD_SFT_L,
|
||
|
ISO_COUNTRY_CODE,
|
||
|
CMD_TAB_CMD,
|
||
|
CMD_GRV_CMD,
|
||
|
NEW_SAFE_RANGE,
|
||
|
};
|
||
|
|
||
|
void mod_or_mod_with_macro(keyrecord_t *record, uint16_t kc_mod, char* cmd_or_macro);
|
||
|
|
||
|
#endif
|