Paweł Łukasik
ab17ba0ab5
Keymaps: Fix for missing mapping for the polish ć,Ć character
2021-05-27 22:57:49 +02:00
Max Wipfli
074813e441
Keymaps: Add German (Switzerland) keymap layout
...
This adds a `de-ch` keyboard layout.
2021-05-27 09:02:13 +01:00
NonStandardModel
65a341b82f
Base: Fix numeric keypad in slovenian keymap
...
Numeric keypad map was off-by-one.
2021-05-22 21:00:08 +01:00
Linus Groh
f81e581d50
Meta: Remove trailing whitespace from ro.json
...
This fixes the CI linting step.
2021-05-01 20:15:24 +02:00
xSlendiX
1dec93f45c
Keymap: Added Romanian layout
2021-05-01 20:07:27 +02:00
breakgimme
42abda2a19
Keymaps: Add pl keymap ( #6282 )
2021-04-13 00:06:18 +02:00
nickalfi
3a8844520a
Keymaps: Add se keymap ( #6198 )
...
Based on the existing Finnish keymap for special characters and what
characters Linux outputs when I press the key, including Numpad.
2021-04-08 23:35:17 +02:00
Miika Hämynen
5e8b5ff35e
Keymaps: Add sv-dvorak keymap ( #6177 )
...
Based on the finnish keymap for special characters and what characters
linux outputs when I press the key.
2021-04-07 19:34:49 +02:00
Dodoross
0315741815
Keymaps: Added fr-ch.json for Swiss-French keyboards ( #6065 )
...
This new file is inspired by de.json as the two keyboard layouts are
very similar.
2021-04-05 18:04:53 +02:00
networkException
4f22c92b99
Keymap: Added de-macintosh.json for German Mac keyboards
...
Some special characters might not match the exact layout
from macOS as this was tested on Linux, but it is close
enough to be well usable
2021-03-24 15:57:49 +01:00
Magnus Alvestad
a3b03eef01
Keymap: Added no-latin1.json for Norwegian pc105 keyboards ( #5794 )
2021-03-15 08:48:26 +01:00
Emanuele Torre
dd17ec180f
Base: Fix newlines at end of file in some files.
2021-03-08 09:20:53 +01:00
Emanuele Torre
1f81bc6879
Everywhere: Remove unnecessary whitespace at the end of some lines.
2021-03-08 09:20:53 +01:00
TheMorc
38781cb131
Base: Add Slovak keymap
2021-02-22 09:46:02 +01:00
Kevin Kuehler
c909f7001c
keymaps: Add dvorak-programmer
...
I left the numpad the same as qwerty because I don't have a keyborad
with a numpad and don't know if those keys change or not.
2021-02-21 23:48:57 +01:00
Linus Groh
ee41d6e154
Base: Rename some keymaps to use xx-xx format where appropriate
...
- en.json -> en-us.json
- gb.json -> en-gb.json
- ptbr.json -> pt-br.json
- ptpt.json -> pt-pt.json
2021-02-02 16:53:11 +01:00
Ben Wiederhake
9f60ce4801
Base: Replace tabs+spaces in keymaps by only spaces
2021-02-01 09:54:32 +01:00
Ben Wiederhake
b6dddd27b4
Base: Cover entire German keyboard
...
I'm strongly basing this on what I'm used to (xkb-data's "de(basic)"),
but without dead keys (since we don't support them).
2021-02-01 09:54:32 +01:00
Ben Wiederhake
2f92c8cad5
Base: Replace unnecessary escapes by actual codepoints
...
I used this arcane incantation by @emanuele6:
< <(grep -hoP -e '\\u[A-Za-z0-9]{4}' ./*.json) grep -i -ve '\\u001b' \
| sort -u \
| while read -r; do
sed -i "s,\\$REPLY,$(eval "echo $'$REPLY'"),g" ./*.json
done
Plus some manual editing to re-align everything. Thanks! :)
2021-02-01 09:54:32 +01:00
Ben Wiederhake
fa642eb7d0
Base: Fix wrong offset for Numpad and later keys
...
This seems to be the last remaining fallout of
8733da652e
.
2021-02-01 09:54:32 +01:00
Linus Groh
c7ca0a5fef
Base: Add missing "ß" to DE keymap
2021-01-29 23:21:07 +01:00
Linus Groh
8fa8dda97c
Base: Add missing umlauts to DE keymap
2021-01-29 23:21:07 +01:00
Linus Groh
b1b015c052
Base: Fix missing "£" in GB keymap
...
Shift+3 is "£", not "#".
2021-01-29 23:21:07 +01:00
Linus Groh
f70a364a83
Base: Reformat some keymaps
...
This is in line with all the other ones, and makes finding the same keys
in each map array a little easier.
2021-01-29 23:21:07 +01:00
Davide Carella
2444bf6d3b
Keymaps: Created a new keymap for Italian keyboards.
...
It now supports curly braces thanks to the new Shift+AltGr map.
2021-01-06 09:32:08 +01:00
utku
7e9cd8a860
Keymaps: Add Colemak keymap ( #3658 )
...
Leave CapsLock as is, as the Colemak Windows driver also does
(Colemak originally maps CapsLock as Backspace).
2020-10-02 13:44:16 +02:00
Tibor Nagy
bb22b143d5
Base: Move be.json to the correct subfolder
2020-09-14 11:40:03 +02:00
Tibor Nagy
6be3f914f0
Base: Update Hungarian keymap with accented characters and more symbols
...
Also fixing a bug where the numpad keys were accidentally shifted by
one position in the JSON array.
2020-08-06 20:36:50 +02:00
Edgar Araújo
e521daeedc
Keymaps: Add European Portuguese keymap
2020-08-06 17:53:42 +02:00
Estanislao Pérez Nartallo
b09b8d99f2
Userland: Add Spanish keymap
2020-07-26 18:34:29 +02:00
Benoît Lormeau
1d6a3a5e8f
Base: Complete the french keymap and fix the numeric keypad
...
Accentuated letters and other characters from the Unicode Block
"Latin-1 Supplement" were added; they weren't supported in the past.
Regarding the numpad: there was a `"", ` too much in the keymap, which
was shifting the keys when pressed (e.g. I would get a '9' instead of a '+')
2020-07-25 12:34:54 +02:00
thankyouverycool
09152a6fe1
Base: Add missing single quotes to en.json keymap
...
This replaces the double quote in map and alt_map with the correct
single quote character.
2020-07-14 17:58:52 +02:00
LepkoQQ
412e566967
Base: Fix slovenian keymap
2020-06-20 17:04:03 +02:00
LepkoQQ
73bcc01143
Base: Add slovenian keymap
2020-06-18 16:28:20 +02:00
Hüseyin ASLITÜRK
cfaed04464
Base: Typo correction in trq.json
2020-06-16 13:15:17 +02:00
Hüseyin ASLITÜRK
8733da652e
Base: Add numpad keys to keymap files
2020-06-13 12:36:30 +02:00
Hüseyin ASLITÜRK
ff55d00261
Base: Fix incorrect json value for escape character
2020-06-03 21:52:40 +02:00
Magentah
a1fe34bcd8
Keymap: Added keymap file for Japanese keyboard, without IME
...
configuration keys.
2020-05-24 02:13:22 +02:00
Linus Groh
c1a6841cb2
Base: Add "`" to GB keymap
2020-05-07 22:13:46 +02:00
M
8399b7bc11
Base: Add la-latin1 keyboard layout ( #1597 )
2020-04-04 10:34:06 +02:00
redoste
30649ed93f
Keymap: Add FR keymap layout
...
This adds the standard French "AZERTY" keyboard layout. Some keys are unmapped
because some characters are not supported : ²éèçà°€¨£¤ùµ§
2020-03-25 16:24:38 +01:00
Přemysl Janouch
66794d51ef
Keymap: Add a US Dvorak keyboard layout
...
It is yet undecided how to name regional variants.
2020-03-16 07:42:19 +01:00
myphs
57646e362f
Keymap: Add DE keymap layout
...
This makes it easier to work with the german keyboard layout.
Some keys are left unset because their corresponding letters
aren't supported yet.
2020-03-15 11:49:59 +01:00
Andreas Kling
87582d5e63
Keymap: Add ABNT2 keymap ( #1347 )
2020-03-05 17:37:06 +01:00
BenJilks
91f5555eed
Keymap: Add GB keymap layout
...
Replaced GBP with a hash symbol, as unicode is not supported
2020-03-05 16:36:14 +01:00
Mathias Danielsen
88e12f7632
Keymaps: Added keymap for norwegian keyboards
2020-03-01 10:53:15 +01:00
Tibor Nagy
790eaab6f5
Keymap+Base: Keycode fixes, remove workaround
...
Add missing keymap entries for the dollar sign and escape key and reformat
the Hungarian keymap.
Remove the workaround for "0x08", replace it with '\b'.
Fix the octal/hex mixup in the value of escape key. (033 != 0x33, 033 == 0x1B)
2020-01-03 01:20:47 +01:00
Jami Kettunen
6af301edec
Base: Update Finnish keymap with proper AltGr support
2019-12-31 19:46:40 +01:00
Tibor Nagy
d8ddf803e2
Base: Add Hungarian keymap
2019-12-31 19:31:42 +01:00
Jami Kettunen
107612209d
Base: Add ASCII-friendly fi.json
2019-12-30 14:02:00 +01:00