diff options
author | Joel Spadin <joelspadin@gmail.com> | 2020-11-03 18:00:37 -0600 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-11-03 19:38:56 -0500 |
commit | c3e7742f9c990bcc55a7f7358a51530bf4897265 (patch) | |
tree | dfba8caa2bf7962efe16b1926d42fc0ca2160e95 /docs | |
parent | 274fdec783f0815b5f94f75bf00187692b3f0cc2 (diff) |
fix(docs): remove incorrect defines for outputs
The output selection behaviors page still referenced defines that were
removed while reviewing the PR. Updated the docs to match the code.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/docs/behavior/outputs.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/docs/behavior/outputs.md b/docs/docs/behavior/outputs.md index 324f6f4..ae81249 100644 --- a/docs/docs/behavior/outputs.md +++ b/docs/docs/behavior/outputs.md @@ -23,11 +23,11 @@ header, which is added at the top of the keymap file: This allows you to reference the actions defined in this header: -| Define | Action | Alias | -| ------------------- | ----------------------------------------------- | --------- | -| `OUTPUT_USB_CMD` | Prefer sending to USB | `OUT_USB` | -| `OUTPUT_BLE_CMD` | Prefer sending to the current bluetooth profile | `OUT_BLE` | -| `OUTPUT_TOGGLE_CMD` | Toggle between USB and BLE | `OUT_TOG` | +| Define | Action | +| --------- | ----------------------------------------------- | +| `OUT_USB` | Prefer sending to USB | +| `OUT_BLE` | Prefer sending to the current bluetooth profile | +| `OUT_TOG` | Toggle between USB and BLE | ## Output Selection Behavior @@ -38,7 +38,7 @@ The output selection behavior changes the preferred output on press. - Reference: `&out` - Parameter #1: Command, e.g. `OUT_BLE` -### Example: +### Examples 1. Behavior binding to prefer sending keyboard output to USB |