# pane.Pane.breakOut

- **Module:** pane.Pane
- **Package:** @libtmux/libtmux
- **Language:** TypeScript
- **Kind:** method
- **Source:** https://github.com/libtmux/libtmux-ts/blob/2cb93308200da38a26b59876618116850f110607/packages/libtmux/src/pane.ts#L412
- **Page:** https://libtmux.org/reference/ts/pane-pane-breakout/

```
pane.Pane.breakOut(windowName: : string) -> Promise<void>
```

Move this pane out into a window of its own, in the session it is in.

tmux places a break with no destination in whichever session is current,
which is the attached one rather than this pane's.

## Example

```ts
await pane.breakOut("extracted");
```
