aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add a register/unregister_code16 pair of functionsGergely Nagy2016-08-183-4/+44
| | | | | | | | | | | | | | These functions register not only the 8bit keycode, but the modifiers too. It doesn't handle the full range of the upper 8bits, just the mods, but that's a good start. Changed the tap-dance pair functions to use these, so one can do: `ACTION_TAP_DANCE_DOUBLE (KC_COLN, KC_SCLN)` ...and that will do the right thing. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
* Merge pull request #648 from Vifon/dynamic_macrosJack Humbert2016-08-172-0/+269
|\ | | | | Implement the dynamic macros that are recorded in runtime
| * Add the dynamic macros documentation to the readmeWojciech Siewierski2016-08-181-0/+43
| |
| * Implement the dynamic macros that are recorded in runtimeWojciech Siewierski2016-08-181-0/+226
| |
* | Merge pull request #647 from Vifon/process_record_nocache-fixJack Humbert2016-08-171-10/+12
|\ \ | | | | | | Fix the process_record_nocache function
| * | Fix the process_record_nocache functionWojciech Siewierski2016-08-181-10/+12
| |/ | | | | | | | | This function relies on checking the disable_action_cache static variable before accessing the layer cache.
* | Merge pull request #645 from algernon/f/tap-dance/bufferingJack Humbert2016-08-175-68/+71
|\ \ | | | | | | tap-dance rework
| * | tap-dance: Major rework, to make it more reliableGergely Nagy2016-08-175-68/+70
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reworks how the tap-dance feature works: instead of one global state, we have a state for each tap-dance key, so we can cancel them when another tap-dance key is in flight. This fixes #527. Since we have a state for each key, we can avoid situation where a keyup would mess with our global state. This fixes #563. And while here, we also make sure to fire events only once, and this fixes #574. There is one breaking change, though: tap-dance debugging support was removed, because dumping the whole state would increase the firmware size too much. Any keymap that made use of this, will have to be updated (but there's no such keymap in the repo). Also, there's a nice trick used in this rework: we need to iterate through tap_dance_actions in a few places, to check for timeouts, and so on. For this, we'd need to know the size of the array. We can't discover that at compile-time, because tap-dance gets compiled separately. We'd like to avoid having to terminate the list with a sentinel value, because that would require updates to all keymaps that use the feature. So, we keep track of the highest tap-dance code seen so far, and iterate until that index. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
| * | tap-dance: Include action_tapping.h for TAPPING_TERMGergely Nagy2016-08-171-0/+1
| |/ | | | | | | | | | | | | Include `action_tapping.h`, so the keymap does not have to define a `TAPPING_TERM` for us, and we can use the default. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
* | Merge pull request #640 from toneman77/iso_satanJack Humbert2016-08-179-0/+364
|\ \ | | | | | | heavily modified spacefn layout for iso boards using the satan PCB
| * | wring keypress for german iso fixed. prettifiedToni2016-08-171-6/+6
| | |
| * | no more warning thanks to iFreilicht's tip with undefToni2016-08-161-0/+1
| | |
| * | in accordance to keymap_makefile_example.mkToni2016-08-161-12/+12
| | |
| * | minor grammer fixesToni2016-08-161-2/+2
| | |
| * | big cleanup and minor refactoring. thanks iFreilicht.Toni2016-08-166-163/+77
| | |
| * | grammarToni2016-08-151-1/+1
| | |
| * | reference to reddit post and Terry MathewsToni2016-08-151-0/+2
| | |
| * | script now waits for the user to press the buttonToni2016-08-151-2/+26
| | |
| * | readme now with pictureToni2016-08-152-0/+2
| | |
| * | more prettynessToni2016-08-151-2/+2
| | |
| * | Update readme.mdToni2016-08-151-1/+1
| | | | | | | | | typo
| * | Update readme.mdToni2016-08-151-0/+2
| | | | | | | | | attempt to prettify the table
| * | more information. first steps in markdownToni2016-08-151-1/+15
| | |
| * | readme.md addedToni2016-08-151-0/+16
| | |
| * | removed my personal stuffToni2016-08-152-4/+3
| | |
| * | Merge remote-tracking branch 'origin/master' into iso_split_rshiftToni2016-08-1549-1278/+3141
| |\| | | | | | | | | | no idea what is merged
| * | increased readability with a definceToni2016-08-141-14/+18
| | |
| * | Merge remote-tracking branch 'origin/master' into iso_split_rshiftToni2016-08-13308-2380/+7761
| |\ \ | | | | | | | | | | | | update from Upstream
| * | | only aestheticsToni2016-08-121-4/+4
| | | |
| * | | new variant with the curly braces on tab layerToni2016-08-071-24/+24
| | | |
| * | | enterfn / enterisctrl on hold addedToni2016-08-051-10/+10
| | | |
| * | | added homerow-ish bracketsToni2016-07-281-4/+4
| | | |
| * | | first try ar adding the parenthesis mess for german isoToni2016-07-271-7/+8
| | | |
| * | | Merge remote-tracking branch 'origin/master' into iso_split_rshiftToni2016-07-276-5/+380
| |\ \ \ | | | | | | | | | | | | | | | merge with master
| * \ \ \ Merge remote-tracking branch 'origin/master' into iso_split_rshiftToni2016-07-2597-434/+6778
| |\ \ \ \ | | | | | | | | | | | | | | | | | | whatever
| * | | | | converted funtions to QMK aliasesToni2016-07-221-32/+23
| | | | | |
| * | | | | more cosmetic changes (whitespace)Toni2016-07-221-1/+1
| | | | | |
| * | | | | purely cosmetic changesToni2016-07-221-42/+42
| | | | | |
| * | | | | changed ctrl back to enter. "j" interfered with my vimmingToni2016-07-191-2/+2
| | | | | |
| * | | | | small cosmetic changeToni2016-07-191-3/+3
| | | | | |
| * | | | | renamed keymapToni2016-07-181-2/+3
| | | | | |
| * | | | | reduced makefile size. not so much needed due to "inheritance"Toni2016-07-181-51/+0
| | | | | |
| * | | | | 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