aboutsummaryrefslogtreecommitdiffstats
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix up info boxes.skullY2018-05-0711-91/+119
|
* Use docsfy to replace gitbookskullY2018-05-075-6/+1005
|
* Update to tap dance docs (#2895)Daniel Gordon2018-05-041-18/+104
| | | | | * Added more comments * Documentation for 'quad function' tap dance now suggests to use the user's directory, and explains how to do so.
* Add dilly/pletcher layout (#2880)Charles Pletcher2018-05-021-0/+2
| | | | | | | | | | | | | | | | | * Add pletcher keymap to dilly/keymaps For the moment, this keymap just removes unneeded RGB keycodes, since an iPad will cut the keyboard off if LEDs are turned on. * Drop support for A_RSFT, add media and autoshift * Lower USB_MAX_POWER_CONSUMPTION for dilly on iPad * Document USB_MAX_POWER_CONSUMPTION This config option is useful for limiting the requested power by, e.g., an iOS device. While the default value is 500, a much lower value--say, 50--can sufficiently power a small keyboard without LEDs.
* Added command history to terminal with other bug fixes, added new song to ↵M1K2018-05-011-2/+29
| | | | | | | | song_list.h (#2855) * Implemented Terminal + added song to song_list.h * Added wait() in order to prevent misbehaviour of 'command not found'
* Talljoe's layout with common keymap. (#2764)Joe Wasson2018-04-211-6/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add userspace to talljoe layout. * Move more authority to userspace and create Bananasplit layout. * Move more things into userspace. * Common Core example * More work on common layout. * Num layer. * talljoe-ansi layout * Updates for Zeal60 * Add Zeal60 to 60_ansi_split_bs_rshift * Swap Escape and Grave * Num-layer tweaks * More tweaks. * Add 1up60rgb to world of layouts. * Rename ansi_split_bs_rshift layout to hhkb. * Control RGB Backlight. * change capslock led * Remove obsolete line from rules.mk. * Add user-friendly userspace override. * Fix enter for 1uprgb60 * Revert "Rename ansi_split_bs_rshift layout to hhkb." This reverts commit 53133719db25c7cb6a199108bbf5d980481a45f4.
* Rework layer function docs (#2656)Mike Kozlowski2018-04-211-9/+10
| | | | | | * Rework layer function docs * Update per PR feedback
* Update feature_tap_dance.md (#2643)bjacques2018-04-211-1/+1
|
* Correct documentation for `PREVENT_STUCK_MODIFIERS`Joe Wasson2018-04-191-1/+1
|
* Add Faux Clicking as subset of Audio feature (#2748)Drashna Jaelre2018-04-191-0/+30
| | | | | | | | | | * Add Faux Clicky to main Audio feature * Make clicky settings user configurable * Add additional documentation * Don't play when music mode is enabled (hopefully)
* Link to Atmel's flip is broken. (#2752)internetirl2018-04-181-1/+1
| | | | | | | The link to Atmel's flip is broken. It re-directs to http://www.microchip.com/. Please update! I think this is the correct link. Please verify. http://www.microchip.com/developmenttools/productdetails.aspx?partno=flip
* Fix link to command pageKevin Foley2018-04-151-1/+1
|
* Added support for audio using pins C4, C5, B6, B7Michael L. Walker2018-04-122-2/+21
|
* Remove obsolete info.json entries (#2712)skullydazed2018-04-071-9/+0
|
* Improve state/chord handling and clean up namespaceSeebs2018-04-071-0/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some values that can never, ever, change were held in local variables, rather than in PROGMEM. Fixed. Change "pressed" to a signed int so the test for < 0 makes sense, and to avoid possible weird failure modes in the case where a key release comes in when pressed is already zero. (Shouldn't happen, sure, but computers are weird.) A lot of things in process_steno had external linkage for no particular reason. They've been marked static. Stuff still builds. Distinguish between currently-held keys and keys that have been held, and expose these values through a nicely-named API so other code could, say, check on the current set of steno chording in order to make displays. Also in passing fix up the "state" value having external linkage so it could clash with other people's variable declarations. The API also provides hooks for key processing and steno chord events, so you can monitor those events without having to run in matrix_scan_user and recheck the values directly. Also document these. There is no path through processing a key that doesn't end with a return false, so the nested return foo() are gone and we just return false.
* Add userspace config.h handling to build script (#2640)Drashna Jaelre2018-04-011-1/+23
| | | | | | | | | | | | | | * Add userspace 'config.h' file * Add more robust docs * Remove config.h code from drashna userspace * Spelling error * Include links to Config Options page * Remove config.h documentation from userspace doc, as it's no longer needed
* Fix broken Markdown (#2652)Mike Kozlowski2018-03-311-2/+2
| | | Fix links in Keyboard Guidelines page
* Add rgblist to docsU-LANDSRAAD\drashna2018-03-281-0/+1
|
* rename api docs to internalsJack Humbert2018-03-268-8/+8
|
* Expand Newb Guide flashing document (#2588)Drashna Jaelre2018-03-261-4/+167
| | | | | | | | | | | | | | * Add header info * Add DFU section * Add Caterina section * Add Halfkay section * Fix Typos * More typos
* Fixes and updates to docs (#2611)Drashna Jaelre2018-03-254-15/+32
| | | | | | | | | | | | | | | | | | | | * Fix advanced keycode headers * Add caveat for OSM over Remote Desktop * Hopefully add better anchors to docs * Add Action code list reference * Formatting of RGB Underglow doc * Add brew update issue on macOS * Revert formatting * Revert RGB doc formatting * Make Config Options doc's sections linkable
* Fix custom functions documation for layer_state_set*U-LANDSRAAD\drashna2018-03-241-1/+1
|
* Add HSV value specification (#2481)Daniel Hoek2018-03-231-1/+1
| | | | | | | | | | * Update feature_rgblight.md I got caught out with this as most color pickers use a percentage NOT 0-255 for this number * Amended description Woops! Was focused on s/v not being a percentage i got h wrong.
* Fix typo in autoshift docs: statn (#2579)Andrew Macpherson2018-03-231-1/+1
|
* Generate API docs from source code comments (#2491)skullydazed2018-03-228-0/+786
| | | | | | | | | | | | | | | | | | * Generate api docs from source code * Add a bunch of doxygen comments * more doxygen comments * Add the in-progress api docs * script to generate docs from travis * Add doc generation to the travis job * make travis_docs.sh commit the work it does * make sure the docs script exits cleanly
* Add macro for momentarily switching to a layer while some mods are active ↵snyman2018-03-202-9/+11
| | | | | | | | | | | | | (#2460) * Macro for a momentary layer switch with mods Passes through to the existing ACTION_LAYER_MODS macro, albeit with more limited options due to lack of space in the quantum_keycodes enum. * Add documentation for LM layer-mod macro * Clean up Tap Toggle documentation
* Added bootloader optionsMerlin042018-03-201-1/+3
| | | I think I got all of them, so I removed the "FIXME".
* [Proposal?] Allow RGB Underglow to turn off when host is idle/asleep (#2104)Drashna Jaelre2018-03-191-0/+2
| | | | | | | | | | * Add RGB Underglow Sleeping * Add RGBLIGHT_SLEEP to toggle/control RGB light behavior * Update rgb docs * Update for RGB disable command
* Rule to enable Modifiers with Auto-Shift (#2542)Jason Stillwell2018-03-161-4/+13
| | | | | | | | | | | | * Re-enable modifiers with auto-shift * Auto-shift modifiers rule * missed a line * Documentation * fixing whitespace
* Add CMD and WIN aliases for KC_GUI, GUI(kc), GUI_T(kc), etc.fauxpark2018-03-162-233/+233
|
* Add keycodes for swap-hands feature.Joe Wasson2018-03-162-11/+22
|
* Rename ONEHAND_ENABLE to SWAP_HANDS_ENABLE for consistencyJoe Wasson2018-03-161-1/+1
|
* Add SS_RALT for AltGR usage in macrosDrashna Jael're2018-03-091-0/+1
|
* Disable the glossary linking to fix #2498 (#2499)skullydazed2018-03-083-3/+3
|
* Add layer_state_set_* to custom function listsU-LANDSRAAD\drashna2018-03-071-1/+37
|
* Examples should all use _user functions for consistencyU-LANDSRAAD\drashna2018-03-071-4/+5
|
* Add back docs for hand-swapping feature.Joe Wasson2018-03-072-0/+32
|
* Move the linux tutorials to an info box on newbs_getting_startedskullY2018-03-062-5/+7
|
* warn->dangerskullY2018-03-061-1/+1
|
* Flesh out the newbs guideskullY2018-03-062-12/+50
|
* Add a newbie guide for people completely new to QMK (#2480)skullydazed2018-03-068-1/+292
|
* Mention invalid names in the readme. (#2458)Graham P Heath2018-03-031-1/+1
|
* More thoroughly document Bootmagic and Command (#2455)skullydazed2018-03-025-62/+165
|
* Update feature_macros.md (#2387)Mitchell van Manen2018-03-011-3/+3
| | | break statements are never reached due to the return statement, so unnecessary
* Add a little aside explaining that shifted keys with mod-tap doesn't work ↵fauxpark2018-03-011-1/+7
| | | | (#2446)
* Fixed dead links (#2451)Brian Choromanski2018-03-013-5/+5
| | | | | | | | * Fixed typo of 'confid.h' to 'config.h' * Fixed broken links in docs * Fixed a lot of dead links
* Fixed typo of 'confid.h' to 'config.h' (#2448)Brian Choromanski2018-02-284-8/+10
| | | | | | * Fixed typo of 'confid.h' to 'config.h' * Fixed broken links in docs
* Document bootmagic hot keysYan-Fa Li2018-02-231-0/+35
| | | | - covers most of tmk_core/common/bootmagic.h
* Fixed formatting for Fedora exampleferbie2018-02-231-0/+1
|
* ergobox -> ergodoxJose Pablo Mora2018-02-231-1/+1
|