blob: 08c101ec526d7cae6f44be3395c2e4f1b6cf0977 (
plain)
1
2
3
4
5
6
7
8
9
|
#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));
|