Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Unicodemap keycodes rename (#21092) | Ryan | 2023-06-01 | 1 | -13/+13 |
| | |||||
* | Move single `LAYOUT`s to data driven (#20365) | Ryan | 2023-04-12 | 1 | -7/+1 |
| | |||||
* | Fix functions with empty params (#19647) | Ryan | 2023-01-20 | 1 | -3/+3 |
| | | | | | * Fix functions with empty params * Found a bunch more | ||||
* | Align definition of unicode_map (#19452) | Joel Challis | 2023-01-01 | 1 | -1/+1 |
| | |||||
* | Normalise output selection (Bluetooth) keycodes (#19004) | Ryan | 2022-11-08 | 1 | -5/+2 |
| | |||||
* | Normalise Unicode keycodes (#18898) | Ryan | 2022-10-31 | 1 | -8/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * `UC_MOD`/`UC_RMOD` -> `UC_NEXT`/`UC_PREV` * `UNICODE_MODE_*` -> `QK_UNICODE_MODE_*` * `UC_MAC` -> `UNICODE_MODE_MACOS` * `UC_LNX` -> `UNICODE_MODE_LINUX` * `UC_WIN` -> `UNICODE_MODE_WINDOWS` * `UC_BSD` -> `UNICODE_MODE_BSD` * `UC_WINC` -> `UNICODE_MODE_WINCOMPOSE` * `UC_EMACS` -> `UNICODE_MODE_EMACS` * `UC__COUNT` -> `UNICODE_MODE_COUNT` * `UC_M_MA` -> `UC_MAC` * `UC_M_LN` -> `UC_LINX` * `UC_M_WI` -> `UC_WIN` * `UC_M_BS` -> `UC_BSD` * `UC_M_WC` -> `UC_WINC` * `UC_M_EM` -> `UC_EMAC` * Docs * Update quantum/unicode/unicode.h | ||||
* | Remove legacy Debug keycode (#18769) | Ryan | 2022-10-19 | 1 | -1/+1 |
| | | | | | | | | | | | * `DEBUG` -> `DB_TOGG`, default-ish keymaps * `DEBUG` -> `DB_TOGG`, user keymaps * `DEBUG` -> `DB_TOGG`, community layouts * `DEBUG` -> `DB_TOGG`, userspace * `DEBUG` -> `DB_TOGG`, docs & core | ||||
* | Remove legacy keycodes, part 5 (#18710) | Ryan | 2022-10-15 | 1 | -1/+1 |
| | | | | | * `KC_SLCK` -> `KC_SCRL` * `KC_NLCK` -> `KC_NUM` | ||||
* | Remove `UNICODE_KEY_OSX` and `UC_OSX` (#18290) | Ryan | 2022-09-06 | 1 | -2/+2 |
| | |||||
* | Use a macro to compute the size of arrays at compile time (#18044) | Jeff Epler | 2022-08-30 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add ARRAY_SIZE and CEILING utility macros * Apply a coccinelle patch to use ARRAY_SIZE * fix up some straggling items * Fix 'make test:secure' * Enhance ARRAY_SIZE macro to reject acting on pointers The previous definition would not produce a diagnostic for ``` int *p; size_t num_elem = ARRAY_SIZE(p) ``` but the new one will. * explicitly get definition of ARRAY_SIZE * Convert to ARRAY_SIZE when const is involved The following spatch finds additional instances where the array is const and the division is by the size of the type, not the size of the first element: ``` @ rule5a using "empty.iso" @ type T; const T[] E; @@ - (sizeof(E)/sizeof(T)) + ARRAY_SIZE(E) @ rule6a using "empty.iso" @ type T; const T[] E; @@ - sizeof(E)/sizeof(T) + ARRAY_SIZE(E) ``` * New instances of ARRAY_SIZE added since initial spatch run * Use `ARRAY_SIZE` in docs (found by grep) * Manually use ARRAY_SIZE hs_set is expected to be the same size as uint16_t, though it's made of two 8-bit integers * Just like char, sizeof(uint8_t) is guaranteed to be 1 This is at least true on any plausible system where qmk is actually used. Per my understanding it's universally true, assuming that uint8_t exists: https://stackoverflow.com/questions/48655310/can-i-assume-that-sizeofuint8-t-1 * Run qmk-format on core C files touched in this branch Co-authored-by: Stefan Kerkmann <karlk90@pm.me> | ||||
* | RESET -> QK_BOOT user keymaps (#17940) | Joel Challis | 2022-08-21 | 1 | -1/+1 |
| | |||||
* | Make default layer size 16-bit (#15286) | Drashna Jaelre | 2022-06-19 | 1 | -4/+4 |
| | | | Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com> | ||||
* | Rename `AdafruitBLE` to `BluefruitLE` (#16127) | Ryan | 2022-01-30 | 1 | -3/+3 |
| | |||||
* | Illustrate the emoji layer (#6555) | Mark Stosberg | 2019-08-17 | 1 | -4/+4 |
| | | | Now the Emoji layer is easier to visualize. | ||||
* | [Keymap] Added compatibility for Planck rev6 (#5706) | Priyadi Iman Nurcahyo | 2019-04-29 | 1 | -1/+3 |
| | | | | | | | | | | | | * Update code for compatibility with latest QMK * Added compatibility with Planck rev6 * use wait_ms instead of _delay_ms * removed unnecessary rules * disable audio on rev4 only | ||||
* | Remove redundant KC_TRNS and KC_NO fillers in remaining keymaps (#5154) | fauxpark | 2019-02-17 | 1 | -3/+0 |
| | |||||
* | Add C(), A() and G() to match already existing S() (#4673) | fauxpark | 2019-01-25 | 1 | -1/+0 |
| | |||||
* | handwired/promethium Refactor and Configurator support (#4524) | noroadsleft | 2018-12-01 | 1 | -15/+15 |
| | | | | | | | | | | | | * handwired/promethium: refactor - config.h files - updated to use #pragma once - removed redundant config.h includes - layout macro moved from config.h to promethium.h - layout macro renamed from KEYMAP_CUSTOM to LAYOUT * handwired/promethium: Configurator support | ||||
* | update priyadi's keymap config | Jack Humbert | 2017-08-07 | 1 | -14/+14 |
| | |||||
* | Fix spelling of "persistent" | Nikolaus Wittenstein | 2017-05-11 | 1 | -6/+6 |
| | | | | Fixes #1201. | ||||
* | Simple RGB backlight theming | Priyadi Iman Nurcahyo | 2017-04-30 | 1 | -72/+73 |
| | |||||
* | Promethium update: demo LED, fix PS2 delay, fix LED ordering, change click ↵ | Priyadi Iman Nurcahyo | 2017-04-29 | 1 | -1/+33 |
| | | | | frequency | ||||
* | Fix LED sequence; bug fixes | Priyadi Iman Nurcahyo | 2017-04-19 | 1 | -4/+12 |
| | |||||
* | Fix Planck compatibility | Priyadi Iman Nurcahyo | 2017-04-19 | 1 | -0/+2 |
| | |||||
* | Keymap updates and some adjustment for latest version of QMK | Priyadi Iman Nurcahyo | 2017-04-19 | 1 | -21/+121 |
| | |||||
* | Promethium rev2 | Priyadi Iman Nurcahyo | 2017-04-19 | 1 | -17/+31 |
| | | | | | | | * 10 more indicator LEDs * Piezo buzzer * Uses HC138 decoder to free up 5 pins * Trackpoint buttons are now part of matrix | ||||
* | added pause, prtsc & ins to list of keys to be processed on release | Priyadi Iman Nurcahyo | 2017-02-21 | 1 | -2/+5 |
| | |||||
* | Move caps to FUN layer; add Pause key | Priyadi Iman Nurcahyo | 2017-02-21 | 1 | -12/+4 |
| | |||||
* | Move del back to fun+backspce | Priyadi Iman Nurcahyo | 2017-02-21 | 1 | -3/+3 |
| | |||||
* | Only process Fnumber on key release, and only when layer is still active | Priyadi Iman Nurcahyo | 2017-02-21 | 1 | -0/+10 |
| | |||||
* | Fix integer overflow | Priyadi Iman Nurcahyo | 2017-02-16 | 1 | -6/+4 |
| | |||||
* | reposition ins and del key | Priyadi Iman Nurcahyo | 2017-02-16 | 1 | -12/+16 |
| | |||||
* | Move keyboard specific stuff to keyboard specific files, and vice versa | Priyadi Iman Nurcahyo | 2017-02-15 | 1 | -13/+56 |
| | |||||
* | Added copyright notice | Priyadi Iman Nurcahyo | 2017-02-15 | 1 | -2/+14 |
| | |||||
* | Merge my Planck-like keyboards | Priyadi Iman Nurcahyo | 2017-02-15 | 1 | -64/+100 |
| | |||||
* | Move Alt-Tab position | Priyadi Iman Nurcahyo | 2017-02-15 | 1 | -4/+4 |
| | |||||
* | num, func, punc 3state layer done right | Priyadi Iman Nurcahyo | 2017-02-15 | 1 | -55/+44 |
| | |||||
* | GUI layer fixes | Priyadi Iman Nurcahyo | 2017-02-14 | 1 | -2/+2 |
| | |||||
* | Alt-tab handling in GUI layer | Priyadi Iman Nurcahyo | 2017-02-14 | 1 | -3/+13 |
| | |||||
* | remove stand alone punc layer switcher for now | Priyadi Iman Nurcahyo | 2017-02-14 | 1 | -1/+3 |
| | |||||
* | Add explicit punctuation key for greek layers | Priyadi Iman Nurcahyo | 2017-02-14 | 1 | -6/+6 |
| | |||||
* | Func + Num = Punc | Priyadi Iman Nurcahyo | 2017-02-14 | 1 | -9/+9 |
| | |||||
* | move GRV to ESC position | Priyadi Iman Nurcahyo | 2017-02-13 | 1 | -4/+4 |
| | |||||
* | Forgot to add ifdef to optional feature | Priyadi Iman Nurcahyo | 2017-02-13 | 1 | -0/+2 |
| | |||||
* | Remove assignment warning | Priyadi Iman Nurcahyo | 2017-02-13 | 1 | -1/+1 |
| | |||||
* | Some space optimization and housekeeping | Priyadi Iman Nurcahyo | 2017-02-13 | 1 | -44/+30 |
| | |||||
* | Add regular space to B+N on GUI layer for repeating space | Priyadi Iman Nurcahyo | 2017-02-11 | 1 | -1/+1 |
| | |||||
* | Switch to Emoji layer using Punc + greek | Priyadi Iman Nurcahyo | 2017-02-11 | 1 | -20/+4 |
| | |||||
* | Turn off capslock when entering num layer | Priyadi Iman Nurcahyo | 2017-02-11 | 1 | -0/+8 |
| | |||||
* | Move X in number layer away from space | Priyadi Iman Nurcahyo | 2017-02-11 | 1 | -1/+1 |
| |