# tmux.UnbindKeyRequest

- **Module:** tmux
- **Package:** github.com/libtmux/libtmux-go/tmux
- **Language:** Go
- **Kind:** struct
- **Source:** https://github.com/libtmux/libtmux-go/blob/5f808882015a975a65acc7f9da5b3ff0d5cbdc91/tmux/server_keys.go#L27
- **Page:** https://libtmux.org/reference/go/tmux-unbindkeyrequest/

UnbindKeyRequest selects one key or an entire key table to unbind. Exactly one of Key and AllKeys must be set.

## Members

- `Key` (attribute) — Key selects one binding; it is mutually exclusive with AllKeys.
- `KeyTable` (attribute) — KeyTable limits removal to one table; nil selects tmux's default table.
- `AllKeys` (attribute) — AllKeys removes every binding in KeyTable and is mutually exclusive with Key.
- `Quiet` (attribute) — Quiet suppresses tmux's missing-binding diagnostic.
