Andy Kipp
Andy Kipp
UPD: I found that this issue exists starting from 0.9.0 and maybe earlier :) I caught this using [calliases from xonsh-developer-toolkit](https://github.com/anki-code/xonsh-developer-toolkit/blob/main/callias.xsh). The minimal case: ```xsh @aliases.register('a') def _a(): echo ....
This is from the article "[100 Languages Speedrun: Episode 66: Xonsh ](https://dev.to/taw/100-languages-speedrun-episode-66-xonsh-5ade)": ```python echo @(""" for i in range(1, 1000001): print(i) """) > /tmp/tst.py python /tmp/tst.py | head -n 5...
```xsh echo 'echo ok' > file.xonshrc # RuntimeError: attempting to source non-xonsh file! If you are trying to source # a file in another language, then please use the appropriate...
```xsh xonsh --no-rc --no-env clear # TERM environment variable not set ``` We need to have default TERM in `--no-env` if it's needed or close this issue with clarification why...
Error: ```xsh echo @($name := 'Alex') # TypeError: NamedExpr target must be a Name ``` Expected: ```xsh echo @($name := 'Alex') # Alex ``` Workaround: ```xsh echo @(name := 'Alex')...
This is metaissue for list of tasks on refactoring parser. * https://github.com/xonsh/xonsh/pull/5423#issuecomment-2132140432 ## For community ⬇️ **Please click the 👍 reaction instead of leaving a `+1` or 👍 comment**
Hello! Thank you for this awesome thing! I want to build portable standalone file for the [xonsh shell](https://github.com/xonsh/xonsh). The xonsh shell is complex app with lazy loading, process management and...
Hey! I've found the awesome duct! Thank you for this! The gotchas doc is awesome! I just want to let you know about true open sourced project - [xonsh shell](https://github.com/xonsh/xonsh)...
After https://github.com/xonsh/xonsh/pull/5099 https://github.com/xonsh/xonsh/pull/5491 we need to mention `$XONSH_INTERACTIVE`.
Hello! I have an idea! Using DuckDB for xonsh history backend - https://dirk-petersen.medium.com/researchers-please-replace-sqlite-with-duckdb-now-f038044a2702 Use implementation of sqlite as start point - https://github.com/xonsh/xonsh/blob/5afb83d67e0846d3401b9bc0581b6c6a33ff5d76/xonsh/history/sqlite.py ## For community ⬇️ **Please click the 👍...