Reputation: 731
I am sshing into a mac running zsh but each character that I type is remembered and repeated. For example, if it type exit
, I see eexexiexit
on the screen but the command exit
is executed.
If I type directly on the remote machine, there is not a problem so it is the communication via ssh that is the issue. I have no idea how to solve. Any suggestions?
Upvotes: 1
Views: 39
Reputation: 731
I realised that I just needed to ssh into the remove server with the following command: 'TERM=screen-256color ssh ...
Upvotes: 2