# pane.Pane.showResolvedOptions

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

```
pane.Pane.showResolvedOptions() -> Promise<ReadonlyMap<string, string>>
```

The option values that govern this pane, own and inherited together.

`showOptions` reports only what was set here, which for a fresh pane is
often nothing. This resolves what it inherits as well, so an option has an
answer wherever it was actually set.

## Example

```ts
(await pane.showResolvedOptions()).get("allow-rename");
```
