summaryrefslogtreecommitdiffstats
path: root/quantum/keymap_extras/keymap_spanish.h
blob: 224db7be1675be77d753e2cca4084ad6170cb6ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/* Copyright 2015-2016 Jack Humbert
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
#ifndef KEYMAP_SPANISH_H
#define KEYMAP_SPANISH_H

#include "keymap.h"

// Alt gr
#define ALGR(kc) RALT(kc)
#define NO_ALGR KC_RALT

// Normal characters
#define ES_OVRR KC_GRV
#define ES_APOS	KC_MINS
#define ES_IEXL	KC_EQL

#define ES_GRV	KC_LBRC
#define ES_PLUS	KC_RBRC

#define ES_NTIL	KC_SCLN
#define ES_ACUT	KC_QUOT
#define ES_CCED	KC_NUHS

#define ES_LESS	KC_NUBS
#define ES_MINS	KC_SLSH

// Shifted characters
#define ES_ASML	LSFT(ES_OVRR)
#define ES_QUOT	LSFT(KC_2)
#define ES_OVDT	LSFT(KC_3)
#define ES_AMPR	LSFT(KC_6)
#define ES_SLSH LSFT(KC_7)
#define ES_LPRN LSFT(KC_8)
#define ES_RPRN LSFT(KC_9)
#define ES_EQL	LSFT(KC_0)
#define ES_QUES	LSFT(ES_APOS)
#define ES_IQUE	LSFT(ES_IEXL)

#define ES_CIRC	LSFT(ES_GRV)
#define ES_ASTR	LSFT(ES_PLUS)

#define ES_UMLT	LSFT(ES_GRV)

#define ES_GRTR	LSFT(ES_LESS)
#define ES_SCLN	LSFT(KC_COMM)
#define ES_COLN	LSFT(KC_DOT)
#define ES_UNDS	LSFT(ES_MINS)

// Alt Gr-ed characters
#define ES_BSLS	ALGR(ES_OVRR)
#define ES_PIPE	ALGR(KC_1)
#define ES_AT 	ALGR(KC_2)
#define ES_HASH	ALGR(KC_3)
#define ES_TILD	ALGR(ES_NTIL)
#define ES_EURO	ALGR(KC_5)
#define ES_NOT	ALGR(KC_6)

#define ES_LBRC	ALGR(ES_GRV)
#define ES_RBRC ALGR(ES_PLUS)

#define ES_LCBR	ALGR(ES_ACUT)
#define ES_RCBR	ALGR(ES_CCED)

#endif