121 lines
		
	
	
	
		
			4.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			121 lines
		
	
	
	
		
			4.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| // Copyright 2024 QMK
 | ||
| // SPDX-License-Identifier: GPL-2.0-or-later
 | ||
| 
 | ||
| /*******************************************************************************
 | ||
|   88888888888 888      d8b                .d888 d8b 888               d8b
 | ||
|       888     888      Y8P               d88P"  Y8P 888               Y8P
 | ||
|       888     888                        888        888
 | ||
|       888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b
 | ||
|       888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K
 | ||
|       888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b.
 | ||
|       888     888  888 888      X88      888    888 888 Y8b.          888      X88
 | ||
|       888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P'
 | ||
|                                                         888                 888
 | ||
|                                                         888                 888
 | ||
|                                                         888                 888
 | ||
|      .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888
 | ||
|     d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888
 | ||
|     888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888
 | ||
|     Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888
 | ||
|      "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888
 | ||
|          888
 | ||
|     Y8b d88P
 | ||
|      "Y88P"
 | ||
| *******************************************************************************/
 | ||
| 
 | ||
| #pragma once
 | ||
| #include "keycodes.h"
 | ||
| // clang-format off
 | ||
| 
 | ||
| // Aliases
 | ||
| #define SI_CEDL KC_GRV  // ¸ (dead)
 | ||
| #define SI_1    KC_1    // 1
 | ||
| #define SI_2    KC_2    // 2
 | ||
| #define SI_3    KC_3    // 3
 | ||
| #define SI_4    KC_4    // 4
 | ||
| #define SI_5    KC_5    // 5
 | ||
| #define SI_6    KC_6    // 6
 | ||
| #define SI_7    KC_7    // 7
 | ||
| #define SI_8    KC_8    // 8
 | ||
| #define SI_9    KC_9    // 9
 | ||
| #define SI_0    KC_0    // 0
 | ||
| #define SI_QUOT KC_MINS // '
 | ||
| #define SI_PLUS KC_EQL  // +
 | ||
| #define SI_Q    KC_Q    // Q
 | ||
| #define SI_W    KC_W    // W
 | ||
| #define SI_E    KC_E    // E
 | ||
| #define SI_R    KC_R    // R
 | ||
| #define SI_T    KC_T    // T
 | ||
| #define SI_Z    KC_Y    // Z
 | ||
| #define SI_U    KC_U    // U
 | ||
| #define SI_I    KC_I    // I
 | ||
| #define SI_O    KC_O    // O
 | ||
| #define SI_P    KC_P    // P
 | ||
| #define SI_SCAR KC_LBRC // Š
 | ||
| #define SI_DSTR KC_RBRC // Đ
 | ||
| #define SI_A    KC_A    // A
 | ||
| #define SI_S    KC_S    // S
 | ||
| #define SI_D    KC_D    // D
 | ||
| #define SI_F    KC_F    // F
 | ||
| #define SI_G    KC_G    // G
 | ||
| #define SI_H    KC_H    // H
 | ||
| #define SI_J    KC_J    // J
 | ||
| #define SI_K    KC_K    // K
 | ||
| #define SI_L    KC_L    // L
 | ||
| #define SI_CCAR KC_SCLN // Č
 | ||
| #define SI_CACU KC_QUOT // Ć
 | ||
| #define SI_ZCAR KC_NUHS // Ž
 | ||
| #define SI_LABK KC_NUBS // <
 | ||
| #define SI_Y    KC_Z    // Y
 | ||
| #define SI_X    KC_X    // X
 | ||
| #define SI_C    KC_C    // C
 | ||
| #define SI_V    KC_V    // V
 | ||
| #define SI_B    KC_B    // B
 | ||
| #define SI_N    KC_N    // N
 | ||
| #define SI_M    KC_M    // M
 | ||
| #define SI_COMM KC_COMM // ,
 | ||
| #define SI_DOT  KC_DOT  // .
 | ||
| #define SI_MINS KC_SLSH // -
 | ||
| #define SI_DIAE S(SI_CEDL) // ¨ (dead)
 | ||
| #define SI_EXLM S(SI_1)    // !
 | ||
| #define SI_DQUO S(SI_2)    // "
 | ||
| #define SI_HASH S(SI_3)    // #
 | ||
| #define SI_DLR  S(SI_4)    // $
 | ||
| #define SI_PERC S(SI_5)    // %
 | ||
| #define SI_AMPR S(SI_6)    // &
 | ||
| #define SI_SLSH S(SI_7)    // /
 | ||
| #define SI_LPRN S(SI_8)    // (
 | ||
| #define SI_RPRN S(SI_9)    // )
 | ||
| #define SI_EQL  S(SI_0)    // =
 | ||
| #define SI_QUES S(SI_QUOT) // ?
 | ||
| #define SI_ASTR S(SI_PLUS) // *
 | ||
| #define SI_RABK S(SI_LABK) // >
 | ||
| #define SI_SCLN S(SI_COMM) // ;
 | ||
| #define SI_COLN S(SI_DOT)  // :
 | ||
| #define SI_UNDS S(SI_MINS) // _
 | ||
| #define SI_TILD ALGR(SI_1)    // ~
 | ||
| #define SI_CARN ALGR(SI_2)    // ˇ (dead)
 | ||
| #define SI_CIRC ALGR(SI_3)    // ^ (dead)
 | ||
| #define SI_BREV ALGR(SI_4)    // ˘ (dead)
 | ||
| #define SI_RNGA ALGR(SI_5)    // ° (dead)
 | ||
| #define SI_OGON ALGR(SI_6)    // ˛ (dead)
 | ||
| #define SI_GRV  ALGR(SI_7)    // `
 | ||
| #define SI_DOTA ALGR(SI_8)    // ˙ (dead)
 | ||
| #define SI_ACUT ALGR(SI_9)    // ´ (dead)
 | ||
| #define SI_DACU ALGR(SI_0)    // ˝ (dead)
 | ||
| #define SI_BSLS ALGR(SI_Q)    // (backslash)
 | ||
| #define SI_PIPE ALGR(SI_W)    // |
 | ||
| #define SI_EURO ALGR(SI_E)    // €
 | ||
| #define SI_DIV  ALGR(SI_SCAR) // ÷
 | ||
| #define SI_MUL  ALGR(SI_DSTR) // ×
 | ||
| #define SI_LBRC ALGR(SI_F)    // [
 | ||
| #define SI_RBRC ALGR(SI_G)    // ]
 | ||
| #define SI_LLST ALGR(SI_K)    // ł
 | ||
| #define SI_CLST ALGR(SI_L)    // Ł
 | ||
| #define SI_SS   ALGR(SI_CACU) // ß
 | ||
| #define SI_CURR ALGR(SI_ZCAR) // ¤
 | ||
| #define SI_AT   ALGR(SI_V)    // @
 | ||
| #define SI_LCBR ALGR(SI_B)    // {
 | ||
| #define SI_RCBR ALGR(SI_N)    // }
 | ||
| #define SI_SECT ALGR(SI_M)    // §
 | ||
| 
 | 
