Gregor Riegler
Gregor Riegler
also something maybe related: when I'm in normal mode, and I paste using ctrl+shift+v it filters all "g" characters from the string I pasted. And if it contained a double...
Ubuntu 20.04.2 LTS x86_64 with i3 Kernel: 5.4.0-81-generic Shell: zsh 5.8 (x86_64-ubuntu-linux-gnu) Terminal: x-terminal-emul Reproducable with a zshrc with just zsh-vi-mode installed
I should add: happens in alacritty as well as in gnome-terminal
I am now on an ArcoLinux Distribution Kernel: 5.13.12-arch1-1 Shell: zsh 5.8 Terminal: alacritty and I am able to reproduce this Issue I had on Ubuntu with the filtered out...
The latest from master branch. Hopefully, I find the time this weekend to make a quick video with a zshrc with only one module. Wondering what else could have an...

I see that you prefer exit(1) over returning an error. I also see the benefit in that it possibly makes the production code less bloated. But I also see the...
I understand. Seems like golang is just designed like this. I need to look into the "panic and recover" alternative https://www.bacancytechnology.com/blog/golang-error-handling
Take a look at this guide: https://golangbot.com/panic-and-recover/ I think it's well explained. Behaves similar to try/catch. I'm just not yet sure how this would affect testability.
Then you still have to exit and return after every git failure, and you need to not forget about the return in order to test it. And you need to...