# pane.Pane.split

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

```
pane.Pane.split(options: : SplitOptions) -> Promise<Pane>
```

Split this pane and resolve the created pane.

## Example

```ts
const created = await pane.split({ vertical: true });
created.id;
```
