# `Plushie.Event.ModifiersEvent`
[🔗](https://github.com/plushie-ui/plushie-elixir/blob/v0.6.0/lib/plushie/event/modifiers_event.ex#L1)

Keyboard modifier state change event.

Emitted when the set of held modifier keys changes (e.g. pressing or
releasing Shift, Ctrl, Alt, or Command/Super). Useful for updating UI
hints that depend on modifier state without waiting for a key event.

## Fields

  * `modifiers` - a `Plushie.KeyModifiers` struct with boolean fields for
    `shift`, `ctrl`, `alt`, `command`, and `logo`
  * `captured` - whether a subscription captured this event

## Pattern matching

    def update(model, %ModifiersEvent{modifiers: %{shift: true}}) do
      %{model | shift_held: true}
    end

    def update(model, %ModifiersEvent{modifiers: mods}) do
      %{model | modifiers: mods}
    end

# `t`

```elixir
@type t() :: %Plushie.Event.ModifiersEvent{
  captured: boolean(),
  modifiers: Plushie.KeyModifiers.t(),
  window_id: String.t() | nil
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
