bulldozier
bulldozier
The root cause is 2-byte unicode characters, which Powerline uses for spaces and triangles, getting treated as 2 printable characters instead of 1. To fix this, make sure the locale...
Our use model was a bit different since we are running in Docker. Our fix was the following: In Dockerfile: -ENV LANG=en_US.UTF-8 +ENV LANG=en_US.utf8 +sed -i 's/UTF-8/utf8/' /etc/yum.conf Then we...
As per https://perlgeek.de/en/article/set-up-a-clean-utf8-environment: Most of the time it works to set all of these to the same value. Instead of setting all LC_ variables separately, you can set the LC_ALL....
Are you sourcing the ZSH setup files or BASH ones? On Wed, Sep 15, 2021 at 3:34 PM Yang Zhang ***@***.***> wrote: > Here's what I see: > > [image:...
Did you try the things suggested here: https://github.com/zsh-users/zsh-autosuggestions/issues/153 (terminal settings for locale) and a couple here: https://stackoverflow.com/questions/43267978/powerline-ps1-line-wrapping On Wed, Sep 15, 2021 at 3:44 PM Yang Zhang ***@***.***> wrote: >...
There is still a bug related to canvasBackingScale for pie charts. Whenever canvasBackingScale is set to a value other than 1, pie charts render incorrectly, essentially used the scaled width...
I'm seeing this on pie charts as well. PR #122 only fixes funnel charts. The only workaround I have so far is to comment out the lines mentioned above by...
The real fix is to use the inner element width and height when calling drawImage: ``` else if (tagname == 'canvas') { var hh = $(el).innerHeight() - 2 * parseInt($(el).css('padding-top'),...
I am seeing this crash too, using the latest code. The stack trace is 100k deep. ``` Program received signal SIGSEGV, Segmentation fault. 0x00007ffff0f7acec in add_tree_edge (e=Cannot access memory at...
The graph that is crashing has 2866 nodes (the value of maxiter seen in the stack trace) and 5768 edges. Not that big. By the way this is in lib/common/ns.c,...