I have:
I'm not really sure where to post it. I got weird duplicate of current command on alacritty. This not happen if:
cd then tab. The cd become cdcd
If this was problem in alacritty, other themes should behave the same. But this bug only shown if I use pure.
I really like your themes and have been using it for a long time. Hopefully there's a solution to this.
Thanks for taking your time to build this theme & review my ticket 馃檱
I can't reproduce this in Alacritty using my own setup, or even when using pure Pure (without other configs).
There have been many previous similar issues, sometimes due to Hyper, other times due to framework (e.g. oh-my-zsh or prezto) or bugs, but I can't think of what in Pure could cause this right now.
This could be an issue with zsh being unable to calculate the width of the text, for whatever reason. You can try this suggestion by elvis-macak.
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
If that doesn't help, my guess it's something that's hooking into ZLE, maybe performing some action during completion. I'm not at all familiar with zim though.
This is working.
Thank you very much!
For docker do the following before install on Debian:
```shell
RUN apt-get install -y locales && \
dpkg-reconfigure locales && \
locale-gen en_US.UTF-8
ENV LANG=en_US.UTF-8 \
LC_ALL=en_US.UTF-8
```
Most helpful comment
I can't reproduce this in Alacritty using my own setup, or even when using pure Pure (without other configs).
There have been many previous similar issues, sometimes due to Hyper, other times due to framework (e.g. oh-my-zsh or prezto) or bugs, but I can't think of what in Pure could cause this right now.
This could be an issue with zsh being unable to calculate the width of the text, for whatever reason. You can try this suggestion by elvis-macak.
If that doesn't help, my guess it's something that's hooking into ZLE, maybe performing some action during completion. I'm not at all familiar with zim though.