John Petersen

Results 11 comments of John Petersen

I'm very interested in this feature - is anyone actively working on it? I wouldn't be the right person to start it, but I'd be happy to contribute, test, profile,...

As a general rule, when one command requires the success of another, I chain them with '&&'. There's a time and a place for redirection to `/dev/null`, like my use...

+1 from me as well - tried it from a new user with a bare-bones zshrc (oh-my-zsh, bullet-train + add_newline false) and the error persists. To be clear: "echo" moves...

Here is my current solution: ~/.zshrc ``` PS1=${PS1//\n//} SOURCED_ZSHRC=${SOURCED_ZSHRC:-0} let "SOURCED_ZSHRC++" export SOURCED_ZSHRC if [ "$SOURCED_ZSHRC" -lt 2 ]; then source ~/.zshrc; fi ``` I'm not sure why I need...

I can't seem to find where and how the newline is added, but instead of sourcing twice, I have added a few lines after sourcing oh-my-zsh: ``` export PROMPT="$(tr -d...

Sorry I didn't update, but at some point I tried Bullet-Train again, and I don't have this issue anymore. I had removed the include guards around oh-my-zsh.sh and the prompt...

Considering your comfort with template metaprogramming, have you considered using CRTP instead of / in addition to lambda-based handling? It allows compile-time resolution of the 'most derived' definition of methods...

Sorry, my work is going well but I'm being extra-cautious. I can easily show the general difference between the performance of calls with `std::function` and without. For SDL2/SDL2pp, I either...

I'm experiencing this as well, this appears to be an autohide feature of some kind but it may have an off switch. I'd like to see my tabs any time...

By the way, information on `std::Same` is very sparse, and now despite using double quotes, Google thinks I have STD's. In any case, the link is [here](https://docs.w3cub.com/cpp/concepts/same) and it claims...