Andy Kipp

Results 609 comments of Andy Kipp

> Only the one case that works above where I use 0.14.4 installed from apt, is not using an app image. It would be great to understand the commit number...

Ok, in this case let's back to understanding this chain: > AppImage runs (how?) entrypoint.sh, then it runs bash and then it runs xonsh. Something in this chain breaks prompt-toolkit....

What shebang we will have in [apprun.sh](https://github.com/niess/python-appimage/blob/1a777a00c42b13bd97e771a764a72b189d6e63ba/python_appimage/data/apprun.sh#L1)? How appimage [runs apprun](https://github.com/niess/python-appimage/blob/1a777a00c42b13bd97e771a764a72b189d6e63ba/python_appimage/commands/build/app.py#L303-L321)? What if we run `apprun.sh` from extracted appimage in terminal? What is [python-wrapper.sh](https://github.com/niess/python-appimage/blob/1a777a00c42b13bd97e771a764a72b189d6e63ba/python_appimage/data/python-wrapper.sh#L1)?

What if you will run `${APPDIR}/usr/bin/python3.11 -u "${APPDIR}/opt/python3.11/bin/xonsh" "$@"` in the terminal. Do you have an issue?

> def func_sig_ttin_ttou(n, f) > [1]+ Stopped ### -------------------------- This is also because of SIGTTIN or SIGTTOU Exceptions around [SIGTTIN, SIGTTOU](https://github.com/anki-code/xonsh-developer-toolkit?tab=readme-ov-file#docs-1) ordinarily tell us that OS terminated the interactive process...

Additional checks: 1. Check your bash mode by running `echo $-` before running `${APPDIR}/usr/bin/python3.11 -u "${APPDIR}/opt/python3.11/bin/xonsh" "$@"`. 2. After running `podman run -it ubuntu:24.04 bash` check `echo $-`. `i` in...

1. Please name the env variables following the pattern `XONSH__` e.g. `XONSH_PROMPT_HIGHLIGHT_EXECUTABLE`. 2. Please improve description e.g. "Enable or disable coloring the name of the executable command in in prompt."....

> Disabling executable lookup causes some jank in the syntax highlighting. Can you show what is happening?

> Here's an example. Yeah, looks ugly. We need to find a way how to disable this but keep appearance beautiful.

PR is welcome! > File "/usr/lib/python3.13/site-packages/xonsh/procs/specs.py", line 707, in resolve_alias > cmd0 = self.cmd[0] > IndexError: list index out of range``` I recommend [to trace this in IDE](https://github.com/anki-code/xonsh-developer-toolkit?tab=readme-ov-file#setup-ide).