summaryrefslogtreecommitdiff
path: root/quantum/keymap_extras
AgeCommit message (Collapse)Author
2020-04-13Slight rename of double angle quote keycodesfauxpark
2020-04-12format code according to conventions [skip ci]QMK Bot
2020-04-12Added Workman ZXCVM variation (#8686)artjomsR
* Added Workman ZXCVM variation * Update quantum/keymap_extras/keymap_workman_zxcvm.h Co-Authored-By: Konstantin Đorđević <vomindoraan@gmail.com> * Update quantum/keymap_extras/sendstring_workman_zxcvm.h Co-Authored-By: Ryan <fauxpark@gmail.com> * Update quantum/keymap_extras/keymap_workman_zxcvm.h Co-Authored-By: Ryan <fauxpark@gmail.com> * Update quantum/keymap_extras/keymap_workman_zxcvm.h Co-Authored-By: Ryan <fauxpark@gmail.com> * Update quantum/keymap_extras/sendstring_workman_zxcvm.h Co-Authored-By: Ryan <fauxpark@gmail.com> Co-authored-by: Konstantin Đorđević <vomindoraan@gmail.com> Co-authored-by: Ryan <fauxpark@gmail.com>
2020-04-07Update BÉPO keymap and sendstring LUTfauxpark
2020-04-06GR_DTON → GR_DIATKonstantin Đorđević
2020-04-06Small corrections to Belgian, Serbian and Slovenian keymapsKonstantin Đorđević
2020-04-06Wrong letterfauxpark
2020-04-06Update Italian macOS keymaps and add sendstring LUTsfauxpark
2020-04-05Add Greek keymap (#8636)Ryan
* Add Greek keymap * Split left shift (unused), change keycode for dialytika tonos * Update quantum/keymap_extras/keymap_greek.h Co-Authored-By: Konstantin Đorđević <vomindoraan@gmail.com> * Fix definition for DTON Co-authored-by: Konstantin Đorđević <vomindoraan@gmail.com>
2020-04-05Add Polish keymap (#8637)Ryan
* Add Polish keymap * Fix wrong AltGr mapping * These are ogoneks, not cedillas * Too many !s * ANSI * Just use BSLS * Move BSLS * Move PIPE * Fix some incorrect names in keymap_slovak.h Thanks to vomindoraan
2020-04-05Add Russian keymap (#8638)Drashna Jaelre
* Add Russian keymap * Switch to ANSI layout
2020-04-05Add Korean keymap (#8635)Ryan
* Add Korean keymap * Switch to ANSI layout * Update quantum/keymap_extras/keymap_korean.h Co-Authored-By: Konstantin Đorđević <vomindoraan@gmail.com> Co-authored-by: Konstantin Đorđević <vomindoraan@gmail.com>
2020-04-02Switch to ANSI layoutfauxpark
2020-04-01Add Russian keymapfauxpark
2020-04-01Add Slovak keymap and sendstring LUT (#8561)Ryan
2020-04-01Add Serbian keymaps and sendstring LUT (#8560)Ryan
* Add Serbian keymaps and sendstring LUT * Apply suggestions from code review Co-Authored-By: Konstantin Đorđević <vomindoraan@gmail.com> * Fix formatting Co-authored-by: Konstantin Đorđević <vomindoraan@gmail.com>
2020-04-01Add Lithuanian keymap and sendstring LUT (#8562)Ryan
* Add Lithuanian keymap and sendstring LUT * Add Lithuanian AZERTY
2020-04-01Add Latvian keymap and sendstring LUT (#8563)Ryan
2020-03-27Fix IT_APOS backward compatibility define in keymap_italian.h (#8565)Drashna Jaelre
* Fix IT_APOS backward compatibility define in keymap_italian.h Found by ZSA.
2020-03-26Add Estonian keymap (#8527)Ryan
2020-03-26Add Croatian keymap (#8525)Ryan
* Add Croatian keymap * Fix comment on HR_DIAE
2020-03-22Add Irish keymap (#8528)Ryan
2020-03-22Add Czech keymap (#8526)Ryan
2020-03-22Add US International keymap (#8493)Ryan
* Add US International keymap * Add extra spacing to UK AltGr keycode comments
2020-03-22Add Icelandic keymap and sendstring LUT (#8494)Ryan
2020-03-22Add Finnish keymap and sendstring LUT (#8495)Ryan
2020-03-20Update JIS keymap and sendstring LUT (#8457)Ryan
2020-03-19Fix missing deprecated keycodes for keymap_swedish (#8483)Ryan
2020-03-18Update Programmer Dvorak keymap and add sendstring LUT (#8456)Ryan
* Update Programmer Dvorak keymap and add sendstring LUT * Include quantum.h
2020-03-17Update UK keymap and sendstring LUT (#8458)Ryan
2020-03-16Update Italian keymap and add sendstring LUT (#8438)Ryan
2020-03-16Update German keymap and sendstring LUT (#8437)Ryan
2020-03-16Update French keymap and sendstring LUT (#8436)Ryan
2020-03-16Update Brazilian keymap and add sendstring LUT (#8435)Ryan
2020-03-16Update Belgian keymap and sendstring LUT (#8349)Ryan
2020-03-16Update Slovenian keymap and add sendstring LUT (#8350)Ryan
2020-03-16Update Norman keymap and sendstring LUT (#8404)Ryan
2020-03-16Update Plover keymap (#8405)Ryan
2020-03-13Add Portuguese keymap and sendstring lookup tables (#8390)Luís Oliveira
* Add Portuguese keymap and sendstring lookup tables * Update quantum/keymap_extras/keymap_portuguese.h Co-Authored-By: Ryan <fauxpark@gmail.com> * Update quantum/keymap_extras/keymap_portuguese.h Co-Authored-By: Ryan <fauxpark@gmail.com> * Update quantum/keymap_extras/keymap_portuguese.h Co-Authored-By: Ryan <fauxpark@gmail.com> * Update quantum/keymap_extras/keymap_portuguese.h Co-Authored-By: Ryan <fauxpark@gmail.com> * Update quantum/keymap_extras/keymap_portuguese.h Co-Authored-By: Ryan <fauxpark@gmail.com> * Update quantum/keymap_extras/keymap_portuguese.h Co-Authored-By: Ryan <fauxpark@gmail.com> Co-authored-by: Ryan <fauxpark@gmail.com>
2020-03-12Update Swedish keymap and add sendstring LUT (#8365)Ryan
2020-03-12Update Spanish keymap and sendstring LUT (#8364)Ryan
2020-03-09Update Dvorak, Colemak and Workman keycode aliases (#8217)Ryan
* Update Dvorak, Colemak and Workman keycode aliases * Add missing shifted keycode aliases for Workman
2020-03-08Update Norwegian keymap and add sendstring LUT (#8300)Ryan
2020-03-03Update Hungarian keymap and add sendstring LUT (#8220)Ryan
2020-03-03Reduce PROGMEM usage for sendstring LUT (#8109)Ted M Lin
* Reduce PROGMEM usage for keycode map Bit-pack the keycode bool array to gain back a small amount of flash space. The trade-off is an increase in runtime instructions when running macros. It does make the code a bit harder to read, as well as maintain. For configs that use send_string() et al, it saves ~100 bytes. * Switch to macro and common definition Rewrite the array declarations so both the unpacked (original) and packed LUT arrays can use the same value definitions. This is done by defining a macro that "knows what to do". This makes the code much easier to read and maintain. * Fix macro typos and improve perf Pack the bits in a more efficient order for extraction. And also fix the copy/paste error in the macro... * Switch fully to packed LUT Some minor reformatting. Compile tested all sendstring_xyz.h to make sure they were converted properly. Also checked that an unconverted version would generate a compile error. * Apply whitespace suggestions from code review Co-Authored-By: Ryan <fauxpark@gmail.com> Co-authored-by: Ryan <fauxpark@gmail.com>
2020-02-21Add Danish keymap and sendstring LUT (#8218)Ryan
2020-02-21Add Turkish keymap aliases and sendstring LUT (#7676)Ryan
* Add Turkish keymap aliases and sendstring LUT * Split into F and Q layouts
2019-11-17Run clang-format manually to fix recently changed fileszvecr
2019-10-28Fix formatting for sendstring LUTs (#7176)fauxpark
2019-10-03Fix quantum keymapextra italian (#6779)Silvio Gulizia
* remove IT_PIPE duplicate and add IT_GRAD IT_PIPE was declared 2 times, ones as ° and once as |. I changed the first declaration and called it IT_GRAD. I even fixed the definition because the ° in Italian is obtained with LSFT(IT_AACC) * rename IT_GRAD to IT_DEGR * add missing plus_and_minus * fix missing IT_ACUT definition * change KC_LALT(KC_LSFT to LALT(LSFT * Fix alignment * remove leftover * fix issue generated with chars while pushing * fix typo * fix LCBR and RCBR * fix euro symbol * fix RBRC * change IT_LESS form KC_NUBS to KC_GRAVE * add IT_TILDE and change IT_GRAV to IT_GRAVE * add missing legends for accented vowels * format for readability * revert to commit befor I edit it * initial commit * edited to be easier to compare to _ansi.h * remove keymap_italian_osx_iso.h and rename with edits keymap_italian_osx_ansi.h to keymap_italian_osx.h I found out there were no difference at all * fix missing #endif * rename quantum/keymap_extras/keymap_italian_osx.h to quantum/keymap_extras/keymap_italian_ansi.h Now this file is a clone of the keymap_italian.h that appears to be working only for ISO keyboards. It also contains a few improvements for IT_PIPE (defined two times) and IT_ACUT (missing definition). Additionally it redefines LCBR and RCBR to LSFT(IT_LBRC) and LSFT(IT_RBRC) * rename file * redefines IT_BKSL and IT_PIPE based on KC_BKSL * add new osx_iso and osx_ansi version for italian.h and align BKSL to BSLS, fix double definition of PIPE