Repeated command in output for Zsh prompt

zsh

In the output of any command I put into the prompt, that command is repeated (sometimes partially). What extremely simple configuration for Zsh do I need to enter to remove this repeat?

Example:

user ~ ls
lsDesktop Downloads src

Best Answer

You probably have a hook-like function doing that, or your prompt is doing it.

I suggest reviewing your configuration files.

FWIW, If you start a new shell with zsh -f, it will skip your configuration files and won't be echo'ing the commands anymore.

Related Question