feat(docs): Adding global-quick-tap-ms docs
This commit is contained in:
parent
77eb44ba9b
commit
1e84e265b1
3 changed files with 14 additions and 12 deletions
|
@ -49,11 +49,11 @@ Defines how long a key must be pressed to trigger Hold behavior.
|
||||||
|
|
||||||
If you press a tapped hold-tap again within `quick-tap-ms` milliseconds, it will always trigger the tap behavior. This is useful for things like a backspace, where a quick tap+hold holds backspace pressed. Set this to a negative value to disable. The default is -1 (disabled).
|
If you press a tapped hold-tap again within `quick-tap-ms` milliseconds, it will always trigger the tap behavior. This is useful for things like a backspace, where a quick tap+hold holds backspace pressed. Set this to a negative value to disable. The default is -1 (disabled).
|
||||||
|
|
||||||
#### `global-quick-tap`
|
#### `global-quick-tap-ms`
|
||||||
|
|
||||||
If `global-quick-tap` is enabled, then `quick-tap-ms` will apply not only when the given hold-tap is tapped, but for any key tapped before it. This effectively disables the hold-tap when typing quickly, which can be quite useful for homerow mods. It can also have the effect of removing the input delay when typing quickly.
|
If `global-quick-tap-ms` is like `quick-tap-ms` however it will apply for _any_ key tapped before it. This effectively disables the hold-tap when typing quickly, which can be quite useful for homerow mods. It can also have the effect of removing the input delay when typing quickly.
|
||||||
|
|
||||||
For example, the following hold-tap configuration enables `global-quick-tap` with a 125 millisecond `quick-tap-ms` term.
|
For example, the following hold-tap configuration enables `global-quick-tap-ms` with a 125 millisecond term, alongside a regular `quick-tap-ms` with a 200 millisecond term.
|
||||||
|
|
||||||
```
|
```
|
||||||
gqt: global-quick-tap {
|
gqt: global-quick-tap {
|
||||||
|
@ -62,8 +62,8 @@ gqt: global-quick-tap {
|
||||||
#binding-cells = <2>;
|
#binding-cells = <2>;
|
||||||
flavor = "tap-preferred";
|
flavor = "tap-preferred";
|
||||||
tapping-term-ms = <200>;
|
tapping-term-ms = <200>;
|
||||||
quick-tap-ms = <125>;
|
quick-tap-ms = <200>;
|
||||||
global-quick-tap;
|
global-quick-tap-ms = <125>;
|
||||||
bindings = <&kp>, <&kp>;
|
bindings = <&kp>, <&kp>;
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
|
@ -32,10 +32,11 @@ The `zmk,combos` node itself has no properties. It should have one child node pe
|
||||||
Each child node can have the following properties:
|
Each child node can have the following properties:
|
||||||
|
|
||||||
| Property | Type | Description | Default |
|
| Property | Type | Description | Default |
|
||||||
| --------------- | ------------- | ----------------------------------------------------------------------------------------------------- | ------- |
|
| --------------------- | ------------- | ------------------------------------------------------------------------------------------------------------------------- | ------- |
|
||||||
| `bindings` | phandle-array | A [behavior](../features/keymaps.md#behaviors) to run when the combo is triggered | |
|
| `bindings` | phandle-array | A [behavior](../features/keymaps.md#behaviors) to run when the combo is triggered | |
|
||||||
| `key-positions` | array | A list of key position indices for the keys which should trigger the combo | |
|
| `key-positions` | array | A list of key position indices for the keys which should trigger the combo | |
|
||||||
| `timeout-ms` | int | All the keys in `key-positions` must be pressed within this time in milliseconds to trigger the combo | 50 |
|
| `timeout-ms` | int | All the keys in `key-positions` must be pressed within this time in milliseconds to trigger the combo | 50 |
|
||||||
|
| `global-quick-tap-ms` | int | If any key is tapped within `global-quick-tap-ms` before a key in the combo, the key will not be considered for the combo | -1 |
|
||||||
| `slow-release` | bool | Releases the combo when all keys are released instead of when any key is released | false |
|
| `slow-release` | bool | Releases the combo when all keys are released instead of when any key is released | false |
|
||||||
| `layers` | array | A list of layers on which the combo may be triggered. `-1` allows all layers. | `<-1>` |
|
| `layers` | array | A list of layers on which the combo may be triggered. `-1` allows all layers. | `<-1>` |
|
||||||
|
|
||||||
|
|
|
@ -30,6 +30,7 @@ Combos configured in your `.keymap` file, but are separate from the `keymap` nod
|
||||||
- `layers = <0 1...>` will allow limiting a combo to specific layers. This is an _optional_ parameter, when omitted it defaults to global scope.
|
- `layers = <0 1...>` will allow limiting a combo to specific layers. This is an _optional_ parameter, when omitted it defaults to global scope.
|
||||||
- `bindings` is the behavior that is activated when the behavior is pressed.
|
- `bindings` is the behavior that is activated when the behavior is pressed.
|
||||||
- (advanced) you can specify `slow-release` if you want the combo binding to be released when all key-positions are released. The default is to release the combo as soon as any of the keys in the combo is released.
|
- (advanced) you can specify `slow-release` if you want the combo binding to be released when all key-positions are released. The default is to release the combo as soon as any of the keys in the combo is released.
|
||||||
|
- (advanced) you can specify `global-quick-tap-ms` much like in [hold-taps](behaviors/hold-tap.md#global-quick-tap-ms). If any key is tapped within `global-quick-tap-ms` before a key in the combo, the key will not be considered for the combo.
|
||||||
|
|
||||||
:::info
|
:::info
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue