# session.Session.showOptions

- **Module:** session.Session
- **Package:** libtmux
- **Language:** TypeScript
- **Kind:** method
- **Source:** https://github.com/libtmux/libtmux-ts/blob/3fe1ca654b81b8cbf4a13b777a001a3298c87a6f/packages/libtmux/src/session.ts#L104
- **Page:** https://libtmux.org/en/ts/latest/reference/session-session-showoptions/

```
session.Session.showOptions() -> Promise<ReadonlyMap<string, string>>
```

Every option set on this session itself, not the ones it inherits.

A fresh session usually has none, so an empty map here means nothing was
set on this session — not that the option has no value. `showResolvedOptions`
answers what actually governs it.

## Example

```ts
const options = await session.showOptions();
options.get("status");
```
