]> git.donarmstrong.com Git - qmk_firmware.git/blob - quantum/keymap_extras/keymap_slovenian.h
Keyboard: Helix serial.c, split_scom.c bug fix and update (#4191)
[qmk_firmware.git] / quantum / keymap_extras / keymap_slovenian.h
1 /* Copyright 2018 Žan Pevec
2  *
3  * This program is free software: you can redistribute it and/or modify
4  * it under the terms of the GNU General Public License as published by
5  * the Free Software Foundation, either version 2 of the License, or
6  * (at your option) any later version.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15  */
16
17 #ifndef KEYMAP_SLOVENIAN
18 #define KEYMAP_SLOVENIAN
19 #include "keymap.h"
20
21
22 //Swapped Z and Y
23 #define SI_Z KC_Y
24 #define SI_Y KC_Z
25
26 //Special characters
27 #define SI_CV KC_SCLN
28 #define SI_SV KC_LBRC
29 #define SI_ZV KC_BSLS
30
31 #define SI_A KC_A
32 #define SI_B KC_B
33 #define SI_C KC_C
34 #define SI_D KC_D
35 #define SI_E KC_E
36 #define SI_F KC_F
37 #define SI_G KC_G
38 #define SI_H KC_H
39 #define SI_I KC_I
40 #define SI_J KC_J
41 #define SI_K KC_K
42 #define SI_L KC_L
43 #define SI_M KC_M
44 #define SI_N KC_N
45 #define SI_O KC_O
46 #define SI_P KC_P
47 #define SI_Q KC_Q
48 #define SI_R KC_R
49 #define SI_S KC_S
50 #define SI_T KC_T
51 #define SI_U KC_U
52 #define SI_V KC_V
53 #define SI_W KC_W
54 #define SI_X KC_X
55
56 #define SI_0 KC_0
57 #define SI_1 KC_1
58 #define SI_2 KC_2
59 #define SI_3 KC_3
60 #define SI_4 KC_4
61 #define SI_5 KC_5
62 #define SI_6 KC_6
63 #define SI_7 KC_7
64 #define SI_8 KC_8
65 #define SI_9 KC_9
66
67 #define SI_DOT KC_DOT
68 #define SI_COMM KC_COMM
69
70 #define SI_PLUS KC_EQL // + and * and ~
71 #define SI_QOT KC_MINS // Single quote
72 #define SI_MINS KC_SLSH // - and _
73
74 // shifted characters
75 #define SI_EXLM LSFT(KC_1) // !
76 #define SI_DQOT LSFT(KC_2) // "
77 #define SI_HASH LSFT(KC_3) // #
78 #define SI_DLR  LSFT(KC_4) // $
79 #define SI_PERC LSFT(KC_5) // %
80 #define SI_AMPR LSFT(KC_6) // &
81 #define SI_SLSH LSFT(KC_7) // /
82 #define SI_LPRN LSFT(KC_8) // (
83 #define SI_RPRN LSFT(KC_9) // )
84 #define SI_EQL  LSFT(KC_0) // =
85 #define SI_QST  LSFT(SI_QOT) // ?
86 #define SI_ASTR LSFT(SI_PLUS) // *
87 #define SI_COLN LSFT(KC_DOT) // :
88 #define SI_SCLN LSFT(KC_COMM) // ;
89 #define SI_UNDS LSFT(SI_MINS) // _
90
91 // Alt Gr-ed characters
92 #define SI_CIRC ALTG(KC_3) // ^
93 #define SI_DEG ALTG(KC_5) // °
94 #define SI_GRV ALTG(KC_7) // `
95 #define SI_ACCU ALTG(KC_9) // ´
96 #define SI_LCBR ALTG(KC_B) // {
97 #define SI_RCBR ALTG(KC_N) // }
98 #define SI_LBRC ALTG(KC_F) // [
99 #define SI_RBRC ALTG(KC_G) // ]
100 #define SI_BSLS ALTG(KC_Q) // backslash
101 #define SI_AT  ALTG(KC_V) // @
102 #define SI_EURO ALTG(KC_E) // €
103 #define SI_TILD ALTG(KC_1) // ~
104 #define SI_PIPE ALTG(KC_W) // |
105
106 #endif