Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,14 @@ In order to enable tab completion with **zsh** run the following command:
$ eval "$(_CMEMC_COMPLETE=zsh_source cmemc)"
```

!!! note "Windows / msys2"

When using zsh on Windows with msys2, you need to strip carriage returns to avoid parse errors:

``` shell-session title="completion setup for zsh on Windows/msys2"
$ eval "$(_CMEMC_COMPLETE=zsh_source cmemc | tr -d '\r')"
```

To enable the interactive menu as seen above in **zsh** run the following command:

``` shell-session title="interactive menu for zsh"
Expand Down