summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | new modifier "J" is crtlToni2016-07-171-2/+2
| | | | | | | | |
| * | | | | | | | helper file for me to stay up-to-date with masterToni2016-07-171-0/+4
| | | | | | | | |
| * | | | | | | | changes needed for a ISO satan PCB including a split right-shift keyToni2016-07-177-0/+440
| | | | | | | | |
* | | | | | | | | Merge pull request #638 from premek/masterJack Humbert2016-08-173-0/+260
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Split layout for planck
| * | | | | | | | | Update readme.mdPřemek Vyhnal2016-08-161-0/+1
| | | | | | | | | |
| * | | | | | | | | 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>
* | | | | | | 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
|\ \ \ \ \ \ \ \ \ | |_|/ / / / / / / |/| | | | | | / / | | |_|_|_|_|/ / |