qmk-dactyl-manuform-a/quantum
Weiyi Lou 4ff40a551a Add `DYN_REC_STOP` to dynamic macros
Dynamic macro functionality is modified to check for `DYN_REC_STOP`, so
that macro recording can be stopped with a designated key combination
(e.g. `qs` or anything) instead of mandating the use of a `_DYN` layer.

`_DYN` layer stopping can still be done by passing `DYN_REC_STOP` within
`process_record_user()`:

    bool process_record_user(uint16_t keycode, keyrecord_t *record) {
      uint16_t macro_kc = (keycode == MO(_DYN) ? DYN_REC_STOP : keycode);
      if (!process_record_dynamic_macro(macro_kc, record)) {
        return false;
      }
      return true;
    }
2017-04-30 19:21:44 +10:00
..
api Clarify the quantum license (#1042) 2017-03-28 15:20:36 -07:00
audio Merge branch 'master' into to_push 2017-03-29 12:00:38 -07:00
keymap_extras Fix name collision between ChibiOS and keymap_german 2017-04-13 16:00:29 +03:00
process_keycode Fix warnings in process_printer 2017-04-13 16:00:29 +03:00
serial_link Only re-send matrix every 5ms 2017-04-09 18:34:59 +03:00
template Merge pull request #1184 from osamuaoki/master 2017-03-30 08:45:56 -04:00
tools Backlight abstraction and other changes (#439) 2016-06-23 22:18:20 -04:00
visualizer Fix buffer overrun in lcd_keyframes 2017-04-13 21:40:06 +03:00
analog.c Clarify the quantum license (#1042) 2017-03-28 15:20:36 -07:00
analog.h Clarify the quantum license (#1042) 2017-03-28 15:20:36 -07:00
api.c Clarify the quantum license (#1042) 2017-03-28 15:20:36 -07:00
api.h Clarify the quantum license (#1042) 2017-03-28 15:20:36 -07:00
config_common.h Clarify the quantum license (#1042) 2017-03-28 15:20:36 -07:00
dynamic_macro.h Add `DYN_REC_STOP` to dynamic macros 2017-04-30 19:21:44 +10:00
fauxclicky.c Faux clicky bug fixes 2017-04-19 01:40:16 +07:00
fauxclicky.h Faux clicky bug fixes 2017-04-19 01:40:16 +07:00
keycode_config.c Clarify the quantum license (#1042) 2017-03-28 15:20:36 -07:00
keycode_config.h Clarify the quantum license (#1042) 2017-03-28 15:20:36 -07:00
keymap.h Clarify the quantum license (#1042) 2017-03-28 15:20:36 -07:00
keymap_common.c Disable array bounds warning in keymap_function_id_to_action 2017-04-13 16:00:29 +03:00
led_tables.c Move CIE1931 and breathing tables to its own file 2017-04-09 18:34:59 +03:00
led_tables.h Move CIE1931 and breathing tables to its own file 2017-04-09 18:34:59 +03:00
light_ws2812.c Clarify the quantum license (#1042) 2017-03-28 15:20:36 -07:00
light_ws2812.h Clarify the quantum license (#1042) 2017-03-28 15:20:36 -07:00
matrix.c Clarify the quantum license (#1042) 2017-03-28 15:20:36 -07:00
pincontrol.h Clarify the quantum license (#1042) 2017-03-28 15:20:36 -07:00
quantum.c quick fix for space cadet shift 2017-04-03 12:42:58 -04:00
quantum.h Clarify the quantum license (#1042) 2017-03-28 15:20:36 -07:00
quantum_keycodes.h Clarify the quantum license (#1042) 2017-03-28 15:20:36 -07:00
rgblight.c Move CIE1931 and breathing tables to its own file 2017-04-09 18:34:59 +03:00
rgblight.h Clarify the quantum license (#1042) 2017-03-28 15:20:36 -07:00
variable_trace.c Clarify the quantum license (#1042) 2017-03-28 15:20:36 -07:00
variable_trace.h Clarify the quantum license (#1042) 2017-03-28 15:20:36 -07:00