Andy Kipp

Results 611 comments of Andy Kipp

It is about [signals SIGTTIN and SIGTTOU](https://github.com/anki-code/xonsh-developer-toolkit/?tab=readme-ov-file#docs-1). When you run xonsh under `bash` instead of `bash -i` you're losing the terminal and xonsh was suspended by OS. OS doing this...

In https://github.com/xonsh/xonsh/issues/5512#issuecomment-2178537477 we found that full capturing `!()` doesn't lead to suspending in non-interactive `bash` mode. I think the difference is that in `!()` we have capturing stderr but in...

Tracing with [xunter](https://github.com/anki-code/xunter): ```xsh cat ~/.xonshrc # @events.on_post_rc # def __f(): # $R = $(echo) xunter --rc ~/.xonshrc ++output /tmp/on_post_rc.xun # If we run with `-DXONSH_TRACE_SUBPROC=3` we will have: #...

hi! Thanks for the detailed info around the issue! I can repeat this on any platform with `mill-assembly` package that used in Arch as well. For example on Mac: ```xsh...

Is it right that `cmds_cache.predict_threadable` returns False for nix `cat`? What is the difference between nix `cat` and gnu `cat`?

@SamLukeYes thank you for the answer! I'm not the NixOS user but I can help to investigate the difference because past time I spent to improving threading in xonsh. Could...

Thank you for instructions! I tried to install conda in docker but have fail without any instructions in the net of how to do it right. Sorry. ```xsh docker run...

> The default cat on NixOS is provided by GNU coreutils. It's interesting because I'm using [gnu coreutils on mac](https://formulae.brew.sh/formula/coreutils) and have no issues. We need to investigate the NixOS...