# tmux.BindKeyRequest

- **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#L12
- **Page:** https://libtmux.org/reference/go/tmux-bindkeyrequest/

BindKeyRequest configures one tmux key binding. Its zero value is invalid because Key is required; nil KeyTable and Note omit their flags while pointers to empty strings are explicit.

## Members

- `Key` (attribute) — Key is the required tmux key notation to bind.
- `Command` (attribute) — Command is the tmux command; an empty command is a no-op binding on tmux 3.3+.
- `KeyTable` (attribute) — KeyTable selects a table, or nil for tmux's default table.
- `Note` (attribute) — Note supplies tmux's optional binding note.
- `Repeat` (attribute) — Repeat makes the binding repeatable.
