Andy Kipp
Andy Kipp
I've catch parser glitch: ```xsh echo 1 # 2 \ 3 # no any reaction and ^C is working ``` Expected: ```xsh echo 1 # 2 \ # 1 ```...
```xsh echo $[echo 1] # 1 # Traceback (most recent call last): # File "", line 1, in # AttributeError: 'NoneType' object has no attribute 'splitlines' ``` I think this...
What to improve: 1. Highlight known variables 2. Do not highlight unknown libraries 3. Fix color for subprocess command comment Example: (it's [starship-prompt-mono](https://github.com/anki-code/starship-prompt-mono) with `$XONSH_COLOR_STYLE = "paraiso-dark"`) ## For community...
Add ability to run xonsh in current directory as home directory e.g. `xonsh --local` or `xonsh --here`. Use cases: * You have a project and you want to keep xonsh...
Hello! I'm trying to run xonsh shell using rustpython on Mac but faced with error: ```xsh xonsh curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh # https://rustup.rs/ # restart shell...
Hello! I'm trying to run xonsh shell using rustpython on Mac but faced with error: ```xsh xonsh curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh # https://rustup.rs/ # restart shell...
```xsh rustpython -V # Python 3.13.0alpha (heads/master:40acd5529 rustpython -m pip install pytest cd /tmp git clone https://github.com/xonsh/xonsh cd xonsh pytest ``` ```xsh ===================================================================== test session starts ====================================================================== platform darwin --...
Hi! After latest fixes xonsh is working more and more stable so I've mentioned RustPython in xonsh README, thanks! rc.xsh: ```xsh @aliases.register def _als(): $(echo) ``` ```xsh rustpython -V #...
Hi! I'm trying to install gnureadline (that is the fallback prompt engine for xonsh shell when prompt-toolkit is not working) on mac: ```xsh rustpython -m pip install gnureadline ``` Result:...