Merge pull request #100 from petejohanson/behaviors/add-none

Add `&none` behavior.
This commit is contained in:
Pete Johanson
2020-08-18 14:31:20 -04:00
committed by GitHub
7 changed files with 115 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
---
title: Miscellaneous
---
## Summary
There are a few miscellaneous behaviors that are helpful when working with layers in keymaps,
in particular, with handling what happens in higher layers, and if events are passed to
the next layer or not
## Transparent
The transparent behavior simply ignores key position presses/releases, so they will be
passed down to the next active layer in the stack.
### Behavior Binding
- Reference: `&trans`
- Parameters: None
Example:
```
&trans
```
## None
The none behavior simply swallows and stops key position presses/releases, so they will **not**
be passed down to the next active layer in the stack.
### Behavior Binding
- Reference: `&none`
- Parameters: None
Example:
```
&none
```

View File

@@ -10,6 +10,7 @@ module.exports = {
Behaviors: [
"behavior/key-press",
"behavior/layers",
"behavior/misc",
"behavior/lighting",
],
Development: [