# pane.Pane.unzoom

- **Module:** pane.Pane
- **Package:** libtmux
- **Language:** TypeScript
- **Kind:** method
- **Source:** https://github.com/libtmux/libtmux-ts/blob/3fe1ca654b81b8cbf4a13b777a001a3298c87a6f/packages/libtmux/src/pane.ts#L338
- **Page:** https://libtmux.org/en/ts/latest/reference/pane-pane-unzoom/

```
pane.Pane.unzoom(options: : CommandOptions) -> Promise<void>
```

Restore this pane's window to its layout, whatever it was doing before.

Idempotent in the same way {@link Pane.zoom} is, and unzooms the window
even when a different pane in it is the zoomed one.

## Example

```ts
await pane.unzoom();
```
