Daniel Shahaf

Results 356 comments of Daniel Shahaf

Thanks a lot for the go-head and for the docstrings, Marc! I haven't got much to say about the high-level functionality here (I don't even have docker installed currently), but...

Hi, I have no time to debug this right now, but you should be able to workaround by changing kubectl to ${:-kubectl} within the alias expansions (let's say both instances...

Try changing this: alias kubectl="kubectl --context \${KUBE_CONTEXT:-\$(command kubectl config current-context)}" to this: alias kubectl="\${:-kubectl} --context \${KUBE_CONTEXT:-\$(command \${:-kubectl} config current-context)}" Excuse brevity.

What's the output of `typeset -p ZSH_HIGHLIGHT_VERSION ZSH_HIGHLIGHT_REVISION ZSH_VERSION ZSH_PATCHLEVEL` on your system? zsh-syntax-highlighting doesn't run sed(1), so the root cause of this lies elsewhere. You should bisect your configuration...

> the following patch saved my issue: > Can I do a merge request ? Of course. I've reviewed your #908 now. I'm curious why that patch makes a difference....

There are two layers of command word cache in play, and _zsh_highlight_main__type() does use $REPLY (as a string return value), so it's not impossible that this be related to the...