# tmuxp.workspace.finders.in_cwd

- **Module:** tmuxp.workspace.finders
- **Package:** tmuxp
- **Language:** Python
- **Kind:** function
- **Source:** https://github.com/tmux-python/tmuxp/blob/153acdf6ff1268b14d3d03ed488f545a7123c8f1/src/tmuxp/workspace/finders.py#L83
- **Page:** https://libtmux.org/en/py/latest/workspace/reference/tmuxp-workspace-finders-in_cwd/

```
tmuxp.workspace.finders.in_cwd() -> list[str]
```

Return list of workspace_files in current working directory.

If filename is ``.tmuxp.py``, ``.tmuxp.json``, ``.tmuxp.yaml``.

## Returns

list
    workspace_files in current working directory

## Example

```python
>>> sorted(in_cwd())
['.tmuxp.json', '.tmuxp.yaml']
```
