Andy Kipp
Andy Kipp
Don't forget about `xonfig colors` command to show current palette.
Could you please run on Mac and on Windows and post here the output: ```xsh showcmd conda install "python>=3.11" showcmd conda install @(['"python>=3.11"']) showcmd conda install @(['python>=3.11']) ```
I'm wondering why are you using quotes inside quotes? i.e. why are you runnning ```xsh conda install @(['"python>=3.11"']) ``` instead of ```xsh conda install @(['python>=3.11']) ``` ?
I see. Thank you for the link. The trick is that quotes are needed when you run plain command to avoid interpretation special characters e.g. to avoid parsing `echo 1>2`...
I thinkg It's because not every style has `Name.Builtin` in pygments e.g.: * autumn has - https://github.com/nex3/pygments/blob/df106dc8c0ff67fdc6369265f6cb4e6832698792/pygments/styles/autumn.py#L36C9-L36C21 * borland hasn't - https://github.com/nex3/pygments/blob/df106dc8c0ff67fdc6369265f6cb4e6832698792/pygments/styles/borland.py#L24 May be it's good to set `Name.Builtin` to...
It will be good to fix this. PR is welcome! If you provide the list of commands of how to repeat this in podman/docker container it will help ([example](https://github.com/xonsh/xonsh/issues/4243#issuecomment-826577100)).
It will be cool to add the installation of plugins during build here - https://github.com/xxh/xxh-plugin-zsh-ohmyzsh/blob/558c81646f8fd6687653ba7a5d81656ee6e564cb/build.sh#L32 PR is welcome!
Additional tracing. First window: ```xsh zsh export XONSH_SHOW_TRACEBACK=1 xonsh -c 'sleep 111' # process pid 123 ``` Second window: ```xsh kill -SIGINT 123 ``` First window: ```xsh xonsh -c 'sleep...
Hey! We're going to release new minor version in a week. @jnoortheen @sbillinge please sync what is needed to merge this and have in the release. Thanks!
Related code: https://github.com/xonsh/xonsh/blob/ad4ec323079a330d49cac95df7e7c8c7089f0320/xonsh/procs/specs.py#L560-L563 Deletion is not supported so I think `spec.env["VAR"]=None` may be a workaround.