summaryrefslogtreecommitdiff
path: root/docs/docs/behavior/misc.md
blob: 446ba33c3e40fe20e4ee312c22c7962737a44684 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
---
title: Miscellaneous Behaviors
sidebar_label: 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
```