Open rennsax opened 9 months ago
When aliasing echo, the suggestions become strange.
echo
Steps to reproduce the behavior:
% zsh -df % source path/to/zsh-autosuggestions.zsh % alias echo='echo 123' % # type any string
I've tried it in a docker container and the problem remains.
I like to use 'alias echo="echo -n"' and it completely breaks zsh-autosuggestion.
Edit: For my special use case I changed:
echo $sysparams[pid]
to
/usr/bin/echo $sysparams[pid]
Describe the bug
When aliasing
echo
, the suggestions become strange.To Reproduce
Steps to reproduce the behavior:
Screenshots
Additional context
I've tried it in a docker container and the problem remains.