blob: 4eeaad503595eb97c59974fddd96fc35a30ee2fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include QMK_KEYBOARD_H
#include "keycodes.h"
//
// Override the symbol ° and replace it by `
// The symbol is still available in the symbol layer with the key just below.
//
const key_override_t perc_key_override =
ko_make_basic(MOD_MASK_SHIFT, KEY_PRC, LSFT(KC_EQUAL));
const key_override_t e_key_override =
ko_make_basic(MOD_MASK_CTRL, KEY_F, RCTL(KC_F));
|