aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | | | | | premek split layoutpremek2016-08-161-1/+2
| | | | | | | |
| | * | | | | | premek split layoutpremek2016-08-163-0/+258
| | | |_|/ / / | | |/| | | |
| * | | | | | Merge pull request #637 from mld2443/masterJack Humbert2016-08-175-0/+418
| |\ \ \ \ \ \ | | |_|_|_|_|/ | |/| | | | | Circuit keymap for Planck keyboard
| | * | | | | Added my custom Planck layout called Circuit.Matt2016-08-155-0/+418
| |/ / / / / | | | | | | | | | | | | | | | | | | * Layout has image and readme, as well as documentation in the code.
| * | | | | Merge pull request #635 from algernon/f/ucisJack Humbert2016-08-154-30/+221
| |\ \ \ \ \ | | | | | | | | | | | | | | Symbolic Unicode Input System
| | * | | | | process_unicode: Introduce a slight delayGergely Nagy2016-08-152-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When entering unicode codes, use some delay, so the OS has time to process the information. This is not needed on all systems, but some seem to require it. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
| | * | | | | process_unicode: Replace register_hex32Gergely Nagy2016-08-152-13/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It turns out that register_hex32 did not work reliably, and some systems only allow 7 chars after the unicode magic sequence, while others allow 8. To remedy the situation, store the codes as strings, and type those in instead of doing bit shifting magic. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
| | * | | | | process_unicode: Use uint32_t for UCIS purposesGergely Nagy2016-08-152-6/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use a single uint32_t to store the unicode of a symbol, instead of an array of uint16_ts. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
| | * | | | | process_unicode: Make the startup overridableGergely Nagy2016-08-152-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Extract out the part of `qk_ucis_start` that inputs the placeholder symbol, and make it weak, so it can be overridden. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
| | * | | | | process_unicode: Call process_ucis() automaticallyGergely Nagy2016-08-153-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If UCIS is enabled, call process_ucis() automatically from process_record_quantum(). Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
| | * | | | | process_unicode: Handle too long UCIS symbol namesGergely Nagy2016-08-151-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the symbol name being entered is longer than the max, stop recording it, and stop processing keycodes apart from the ones that can delete, finish or cancel the sequence. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
| | * | | | | process_unicode: Add a way to enter unicode symbols by nameGergely Nagy2016-08-153-3/+126
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The purpose of this change is to allow keymaps to specify a dictionary of unicode symbol name to code mappings, and let the person at the keyboard enter unicode symbols by name. This is done by having a way to trigger unicode symbol input mode, when all keys are cached until Esc, Enter or Space are pressed. Once that happens, we try to look up the symbol from our lookup table. If found, we erase back, and type the unicode magic in to get that symbol. If not found, we still erase back, start unicode input mode, and replay what the user typed in. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
| | * | | | | process_unicode: Small refactor & linux fixGergely Nagy2016-08-152-31/+48
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This moves the unicode input start / end sequences into their own functions, so keymaps and other functionality can build on it too. At the same time, it changes how the Linux variant works, to match reality: CTRL+SHIFT must be unregistered too, and we close the thing with a Space instead. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
* | | | | | Adding KC_BSPC to the LT() macro for LOWER resulted in a backspace stroke ↵Xyverz2016-08-152-59/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | being sent if the LOWER key was used too quickly. Switching back to original LOWER macro, but keeping the new RAISE macro.
* | | | | | Adding u/treasuredfrog's hack to use LT() with the RAISE and LOWER macros.Xyverz2016-08-151-6/+6
| | | | | |
* | | | | | Merge remote-tracking branch 'upstream/master'Xyverz2016-08-1422-1/+687
|\| | | | |
| * | | | | Merge pull request #634 from di0ib/masterJack Humbert2016-08-1417-0/+440
| |\ \ \ \ \ | | | | | | | | | | | | | | minorca handwired
| | * | | | | moved to handwired folderdi0ib2016-08-1417-3/+3
| | | | | | |
| | * | | | | Merge branch 'master' of https://github.com/di0ib/qmk_firmwaredi0ib2016-08-141-0/+2
| | |\ \ \ \ \
| | | * | | | | Updated readmedi0ib2016-08-141-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | Added link to Minorca/Sebright blog.
| | * | | | | | Merge remote-tracking branch 'refs/remotes/jackhumbert/master'di0ib2016-08-1422-9/+1234
| | |\ \ \ \ \ \ | | |/ / / / / / | |/| / / / / / | | |/ / / / /
| * | | | | | Merge pull request #631 from jacwib/masterJack Humbert2016-08-144-0/+246
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Jacwib's keymap
| | * | | | | | Fix bugjacwib2016-08-141-1/+1
| | | | | | | |
| | * | | | | | Remove pointless commentsjacwib2016-08-141-21/+21
| | | | | | | |
| | * | | | | | Update readme.mdjacwib2016-08-141-1/+2
| | | | | | | |
| | * | | | | | Update Makefilejacwib2016-08-141-5/+0
| | | | | | | |
| | * | | | | | Update config.hjacwib2016-08-141-1/+0
| | | | | | | |
| | * | | | | | Update keymap.cjacwib2016-08-141-1/+1
| | | | | | | |
| | * | | | | | Update readme.mdjacwib2016-08-141-2/+2
| | | | | | | |
| | * | | | | | Jack's keymap.jacwib2016-08-144-0/+251
| | | | | | | |
| * | | | | | | Merge pull request #627 from algernon/h/set-unicode-input-modeJack Humbert2016-08-141-1/+1
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | process_unicode: Fix set_unicode_input_mode()
| | * | | | | | | process_unicode: Fix set_unicode_input_mode()Gergely Nagy2016-08-131-1/+1
| | | |_|_|_|_|/ | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In the header, this was defined as `set_unicode_input_mode`, but the implementation had `set_unicode_mode` for a name. Changed the implementation to match the header. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
| * | | | | | | Merge pull request #624 from Xyverz/masterJack Humbert2016-08-1417-8/+987
| |\ \ \ \ \ \ \ | | |_|/ / / / / | |/| | | | | | Added Ergodox Layout with persistent layers, Atreus corrections
| | | | * | | | cleanup readmedi0ib2016-08-141-3/+3
| | | | | | | |
| | | | * | | | Correct data pin to D5di0ib2016-08-141-1/+1
| | | | | | | |
| | | | * | | | Fix listdi0ib2016-08-141-9/+9
| | | | | | | |
| | | | * | | | clean up readnmedi0ib2016-08-141-8/+10
| | | | | | | |
| | | | * | | | Merge remote-tracking branch 'refs/remotes/jackhumbert/master'di0ib2016-08-1454-1420/+3698
| | | | |\ \ \ \ | | |_|_|/ / / / | |/| | | | | |
| | | | * | | | minorcadi0ib2016-08-1417-0/+436
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | minirca with RGB keymap
* | | | | | | | Setup the bottom-row modifiers to be mac-like in their arrangement.Xyverz2016-08-141-3/+3
| |/ / / / / / |/| | | | | |
* | | | | | | Added my own layout to the Phantom.Xyverz2016-08-141-0/+104
| | | | | | |
* | | | | | | Fixing a mixup. Tidying up the keymap.Xyverz2016-08-131-10/+0
| | | | | | |
* | | | | | | Merge remote-tracking branch 'upstream/master'Xyverz2016-08-1350-1420/+2937
|\| | | | | |
| * | | | | | Merge pull request #623 from algernon/ergodox-ez/algernonErez Zukerman2016-08-136-1237/+1244
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | ergodox: Update my keymap to v1.5
| | * | | | | | ergodox: Update my keymap to v1.5Gergely Nagy2016-08-126-1237/+1244
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Major changes include: * The **1HAND** layer has been removed. * A `Delete` key is now available on the right thumb cluster. * The **ADORE** layer received a major update, see the updated layout image. * It is now possible to enable automatic logging for the **ADORE** layer, by setting the `ADORE_AUTOLOG` makefile variable to `yes` when compiling the keymap. It is off by default. * The `~` key and the `Media Next/Prev` key have been swapped on the **base** layer. * On the **ARROW** layer, `Backspace` has been replaced by `Enter`. * There is some experimental support for entering Unicode symbols. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
| * | | | | | | Merge pull request #626 from tenderlove/readme-linkErez Zukerman2016-08-131-2/+2
| |\ \ \ \ \ \ \ | | |_|/ / / / / | |/| | | | | | fix link to ErgoDox EZ
| | * | | | | | fix link to ErgoDox EZAaron Patterson2016-08-121-2/+2
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | This just fixes the readme link to the ErgoDox EZ directory
| * | | | | | forces all ergodox keymaps to be ez on qmk.fm (were infinity)Jack Humbert2016-08-121-0/+2
| | | | | | |
| * | | | | | Merge pull request #622 from shelaf/masterJack Humbert2016-08-127-0/+395
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | My HHKB layout
| | * | | | | | add new lineshela2016-08-121-1/+1
| | | | | | | |