does anyone have any idea why am I getting hit by this bug in zsh since forever? It's like a string formatting bug of some sorts:
~% printf "%s\n" foo
" foo)foo
Basically anything that has double quotes gets interpreted in a similar manner:
~% perl -e 'printf("%s\n", "foobar")'
", "foobar")')foobar
Zsh config isn't elaborate, just some basic things like:
setopt appendhistory histignorealldups autocd autopushd
bindkey -e
zstyle :compinstall filename '/home/zike/.zshrc'
autoload -Uz compinit
compinit
any hints why that can happen? Thanks.